File tree Expand file tree Collapse file tree 2 files changed +3
-6
lines changed
src/components/showcase/wrapper Expand file tree Collapse file tree 2 files changed +3
-6
lines changed Original file line number Diff line number Diff 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 )
Original file line number Diff line number Diff line change @@ -492,8 +492,6 @@ function TestCustomHeaderRowTimeSlot<
492492 ) : null ,
493493 )
494494
495- console . log ( "RET" , ret , leftAndWidths )
496-
497495 return < > { ret } </ >
498496}
499497
You can’t perform that action at this time.
0 commit comments