Skip to content

Commit

Permalink
removed debug log
Browse files Browse the repository at this point in the history
  • Loading branch information
marcus-wishes committed Oct 9, 2024
1 parent eac0d1a commit 1072df0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 6 deletions.
7 changes: 3 additions & 4 deletions showcase/public/showcase-sources.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7961,8 +7961,6 @@ function TestCustomHeaderRowTimeSlot<
}
}

console.log("GROUP ITEMS", groupItemsOfCell)

const leftAndWidths = groupItemsOfCell.map((it, i) => {
const startAndEnd = startAndEndInSlow[i]
if (startAndEnd.status === "before" || startAndEnd.status === "after") {
Expand All @@ -7985,13 +7983,14 @@ function TestCustomHeaderRowTimeSlot<
it ? (
<div
key={groupItemsOfCell[i].title}
className="absolute top-0 bottom-0 bg-warning-bold whitespace-nowrap overflow-visible truncate"
className="absolute top-0 bottom-0 bg-discovery-bold whitespace-nowrap overflow-visible z-10 opacity-50"
style={{
left: `${it.left * cellWidth}px`,
width: `${it.width * cellWidth}px`,
}}
title={groupItemsOfCell[i].title}
>
{groupItemsOfCell[i].title}
<div className="truncate">{groupItemsOfCell[i].title}</div>
</div>
) : null,
)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -492,8 +492,6 @@ function TestCustomHeaderRowTimeSlot<
) : null,
)

console.log("RET", ret, leftAndWidths)

return <>{ret}</>
}

Expand Down

0 comments on commit 1072df0

Please sign in to comment.