Skip to content

Commit

Permalink
fix properties
Browse files Browse the repository at this point in the history
  • Loading branch information
pa-lem committed Oct 15, 2024
1 parent 3b2c964 commit df37b3e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions frontend/app/src/components/display/properties-popover.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -57,9 +57,9 @@ const PropertiesPopover = ({
});
setShowMetaEditModal(true);
}}
disabled={!permission.create.isAllowed}
tooltipEnabled={!permission.create.isAllowed}
tooltipContent={permission.create.message ?? undefined}
disabled={!permission.update.isAllowed}
tooltipEnabled={!permission.update.isAllowed}
tooltipContent={permission.update.message ?? undefined}
data-testid="properties-edit-button"
>
<Icon icon="mdi:pencil" className="text-custom-blue-500" />
Expand Down

0 comments on commit df37b3e

Please sign in to comment.