From 6a0c92b2839a5fd0eb5883a93465057aeb07c299 Mon Sep 17 00:00:00 2001 From: jwink Date: Tue, 24 Dec 2024 08:24:54 -0600 Subject: [PATCH] feat(table): replaced column-type of row-header with boolean row-header --- src/components/ebay-table/index.marko | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/ebay-table/index.marko b/src/components/ebay-table/index.marko index 41142fa7e..f3b224be6 100644 --- a/src/components/ebay-table/index.marko +++ b/src/components/ebay-table/index.marko @@ -136,7 +136,7 @@ $ const { ) && `table-cell--${header.columnType}`, ]; - <${header.columnType === "row-header" ? "th" : "td"} + <${header.rowHeader ? "th" : "td"} ...processHtmlAttributes(tdInput) class=[cellBaseClass, tdClass] >