리스트 행 줄무늬 재구현
This commit is contained in:
parent
cb5ed105ab
commit
1b6d63bf74
|
|
@ -255,7 +255,7 @@ export function ListWidget({ element }: ListWidgetProps) {
|
|||
</TableRow>
|
||||
) : (
|
||||
paginatedRows.map((row, idx) => (
|
||||
<TableRow key={idx} className={config.stripedRows ? undefined : ""}>
|
||||
<TableRow key={idx} className={config.stripedRows && idx % 2 === 1 ? "bg-muted/50" : ""}>
|
||||
{displayColumns
|
||||
.filter((col) => col.visible)
|
||||
.map((col) => (
|
||||
|
|
|
|||
Loading…
Reference in New Issue