-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Converts closed lp table #460
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
return ( | ||
<tr | ||
key={row.id} | ||
className="daisy-hover h-16 cursor-pointer grid-cols-4 items-center" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No hover needed on the closed tables
{tableInstance.getHeaderGroups().map((headerGroup) => ( | ||
<tr key={headerGroup.id}> | ||
{headerGroup.headers.map((header) => ( | ||
<th className="sticky top-0 bg-white" key={header.id}> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If we say bg-base-100
instead (the daisy equivalent) does that work?
This PR converts the closed lp table to use react table.