1
0
Fork 0
mirror of https://github.com/portainer/portainer.git synced 2025-08-04 21:35:23 +02:00

refactor(users): migrate users table to react [EE-4708] (#10759)

This commit is contained in:
Chaim Lev-Ari 2024-04-03 17:38:32 +03:00 committed by GitHub
parent 86f1b8df6e
commit a439695248
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
19 changed files with 159 additions and 192 deletions

View file

@ -26,7 +26,7 @@ export function WidgetTitle({
<div className="widget-icon">
<Icon icon={icon} className="space-right" />
</div>
<span>{title}</span>
<h2 className="text-base m-0">{title}</h2>
</span>
<span className={clsx('pull-right', className)}>{children}</span>
</div>

View file

@ -20,7 +20,7 @@ export function TableRow<D extends DefaultType = DefaultType>({
onClick={onClick}
>
{cells.map((cell) => (
<td key={cell.id}>
<td key={cell.id} className={cell.column.columnDef.meta?.className}>
{flexRender(cell.column.columnDef.cell, cell.getContext())}
</td>
))}