Skip to content

chore: migrate settings page tables from mui to shadcn #16896

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

Merged
merged 8 commits into from
Mar 13, 2025
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix: add table height
  • Loading branch information
jaaydenh committed Mar 13, 2025
commit a442ab31c2488f585d6a29a2edb579ae7d7e7c17
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ const RoleTable: FC<RoleTableProps> = ({
</Cond>

<Cond condition={isEmpty}>
<TableRow>
<TableRow className="h-14">
<TableCell colSpan={999}>
<EmptyState
message="No custom roles yet"
Expand Down Expand Up @@ -204,7 +204,7 @@ const RoleRow: FC<RoleRowProps> = ({
const navigate = useNavigate();

return (
<TableRow data-testid={`role-${role.name}`}>
<TableRow data-testid={`role-${role.name}`} className="h-14">
<TableCell>{role.display_name || role.name}</TableCell>

<TableCell>
Expand Down
Loading