리스트 행 줄무늬 재구현

This commit is contained in:
dohyeons 2025-10-23 12:50:38 +09:00
parent cb5ed105ab
commit 1b6d63bf74
1 changed files with 1 additions and 1 deletions

View File

@ -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) => (