Skip to content

Commit 1072df0

Browse files
committed
removed debug log
1 parent eac0d1a commit 1072df0

File tree

2 files changed

+3
-6
lines changed

2 files changed

+3
-6
lines changed

showcase/public/showcase-sources.txt

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7961,8 +7961,6 @@ function TestCustomHeaderRowTimeSlot<
79617961
}
79627962
}
79637963

7964-
console.log("GROUP ITEMS", groupItemsOfCell)
7965-
79667964
const leftAndWidths = groupItemsOfCell.map((it, i) => {
79677965
const startAndEnd = startAndEndInSlow[i]
79687966
if (startAndEnd.status === "before" || startAndEnd.status === "after") {
@@ -7985,13 +7983,14 @@ function TestCustomHeaderRowTimeSlot<
79857983
it ? (
79867984
<div
79877985
key={groupItemsOfCell[i].title}
7988-
className="absolute top-0 bottom-0 bg-warning-bold whitespace-nowrap overflow-visible truncate"
7986+
className="absolute top-0 bottom-0 bg-discovery-bold whitespace-nowrap overflow-visible z-10 opacity-50"
79897987
style={{
79907988
left: `${it.left * cellWidth}px`,
79917989
width: `${it.width * cellWidth}px`,
79927990
}}
7991+
title={groupItemsOfCell[i].title}
79937992
>
7994-
{groupItemsOfCell[i].title}
7993+
<div className="truncate">{groupItemsOfCell[i].title}</div>
79957994
</div>
79967995
) : null,
79977996
)

showcase/src/components/showcase/wrapper/TimeTableShowcase.tsx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -492,8 +492,6 @@ function TestCustomHeaderRowTimeSlot<
492492
) : null,
493493
)
494494

495-
console.log("RET", ret, leftAndWidths)
496-
497495
return <>{ret}</>
498496
}
499497

0 commit comments

Comments
 (0)