From ee90ebe0f0b525c4d540ede7c196b54d313f0bbc Mon Sep 17 00:00:00 2001 From: AlexSserb Date: Fri, 31 Oct 2025 17:52:57 +0400 Subject: [PATCH] fix: fixed inner attr table header overlaying on outer table header --- src/app/modules/components/InnerAttributesTable.tsx | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/app/modules/components/InnerAttributesTable.tsx b/src/app/modules/components/InnerAttributesTable.tsx index 6f8580e..566ff65 100644 --- a/src/app/modules/components/InnerAttributesTable.tsx +++ b/src/app/modules/components/InnerAttributesTable.tsx @@ -30,7 +30,10 @@ const InnerAttributesTable: FC = ({ attributes, moduleId }) => { records={attributes} verticalSpacing={"md"} groups={undefined} - styles={{ table: { width: "100%" } }} + styles={{ + table: { width: "100%" }, + header: { zIndex: 0 }, + }} /> ); };