binary.js 432 B

12345678910111213
  1. const funnelSnapshotCard = (report === MY_OVERVIEW &&
  2. !ReportGK.xar_metrics_active_capitol_v2) ||
  3. (report === COMPANY_OVERVIEW &&
  4. !ReportGK.xar_metrics_active_capitol_v2_company_metrics)
  5. ? <ReportMetricsFunnelSnapshotCard metrics={metrics} />
  6. : null;
  7. room = room.map((row, rowIndex) => (
  8. row.map((col, colIndex) => (
  9. (rowIndex === 0 || colIndex === 0 || rowIndex === height || colIndex === width) ? 1 : 0
  10. ))
  11. ))