From f80f91296bdfc04864ca86aeee922c50c53782e5 Mon Sep 17 00:00:00 2001 From: Julian <30495990+julzerinos@users.noreply.github.com> Date: Mon, 23 Aug 2021 16:37:02 +0200 Subject: [PATCH] fix: Add displayName attribute to DataTable Row Add displayName attribute to DataTable Row to fix documentation hierarchy in the documentation. --- src/components/DataTable/DataTableRow.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/components/DataTable/DataTableRow.tsx b/src/components/DataTable/DataTableRow.tsx index 13b8cf663a..385b6dcf67 100644 --- a/src/components/DataTable/DataTableRow.tsx +++ b/src/components/DataTable/DataTableRow.tsx @@ -86,6 +86,8 @@ const DataTableRow = ({ ); }; +DataTableRow.displayName = 'DataTable.Row'; + const styles = StyleSheet.create({ container: { borderStyle: 'solid',