Skip to content

Commit

Permalink
feat(table): replaced column-type of row-header with boolean row-header
Browse files Browse the repository at this point in the history
  • Loading branch information
WinkeeFace committed Dec 24, 2024
1 parent eff242b commit 6a0c92b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/ebay-table/index.marko
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ $ const {
) &&
`table-cell--${header.columnType}`,
];
<${header.columnType === "row-header" ? "th" : "td"}
<${header.rowHeader ? "th" : "td"}
...processHtmlAttributes(tdInput)
class=[cellBaseClass, tdClass]
>
Expand Down

0 comments on commit 6a0c92b

Please sign in to comment.