Skip to content

Commit 70e3f96

Browse files
committed
Updates
1 parent 6fa3499 commit 70e3f96

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

packages/design-system/src/elements/toniq-list-table/toniq-list-table.element.ts

+9-1
Original file line numberDiff line numberDiff line change
@@ -415,7 +415,15 @@ export const ToniqListTable = defineToniqElement<ListTableInputs>()({
415415
event.stopPropagation();
416416
})}
417417
>
418-
${guard([rowIndex], () => rowItem.contents)}
418+
${guard(
419+
[
420+
rowIndex,
421+
row.cells[
422+
columnItem.key as keyof typeof row
423+
],
424+
],
425+
() => rowItem.contents,
426+
)}
419427
</div>
420428
`,
421429
)}

0 commit comments

Comments
 (0)