From 2e127613eee04e3dfc7d15e97cdb11450402a9eb Mon Sep 17 00:00:00 2001 From: portikM Date: Tue, 29 Oct 2024 12:18:11 -0400 Subject: [PATCH] fix(ktableview, ktabledata): row-attrs prop type --- src/types/table.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/types/table.ts b/src/types/table.ts index 3da696f44e..70b1025fcc 100644 --- a/src/types/table.ts +++ b/src/types/table.ts @@ -137,7 +137,7 @@ interface TablePropsShared { /** * A function that conditionally specifies row attributes on each row */ - rowAttrs?: (row: Record) => Record + rowAttrs?: (row: Record) => Record /** * A function that conditionally turns a row into a link */