Skip to content

Commit

Permalink
fix: layout
Browse files Browse the repository at this point in the history
  • Loading branch information
Raubzeug committed Jul 3, 2024
1 parent e3d42a7 commit c368b72
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/containers/Tenant/Acl/Acl.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -151,16 +151,16 @@ export const Acl = ({path}: {path: string}) => {

return (
<div className={b()}>
{ownerItem.length && (
{ownerItem.length ? (
<DefinitionList
items={ownerItem}
nameMaxWidth={200}
className={b('owner-container')}
/>
)}
{aclListItems.length && (
) : null}
{aclListItems.length ? (
<DefinitionList items={aclListItems} nameMaxWidth={200} className={b('result')} />
)}
) : null}
</div>
);
};

0 comments on commit c368b72

Please sign in to comment.