Skip to content

Commit 1f47e90

Browse files
committed
Fix ACL role dropdown width
The role dropdown in the ACL tabs could extend over its column width, due to its own fixed width. This fixes that.
1 parent e11a88c commit 1f47e90

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/shared/modals/ResourceDetailsAccessPolicyTab.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -497,7 +497,7 @@ const ResourceDetailsAccessPolicyTab = ({
497497
}
498498
skipTranslate
499499
optionHeight={35}
500-
customCSS={{ width: 360, optionPaddingTop: 5 }}
500+
customCSS={{ width: "100%", optionPaddingTop: 5 }}
501501
/>
502502
) : (
503503
<p>{policy.role}</p>

0 commit comments

Comments
 (0)