Skip to content

Commit

Permalink
fix: delete button is deleted
Browse files Browse the repository at this point in the history
  • Loading branch information
mosoriob committed May 29, 2024
1 parent 930adfd commit 969c61c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tapis-app/Apps/_components/Toolbar/Toolbar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ const Toolbar: React.FC = () => {
<ToolbarButton
text="Delete"
icon="trash"
disabled={selectedApps.length === 0 || hasPermissions === true}
disabled={selectedApps.length === 0 || !hasPermissions}
onClick={() => setModal('delete')}
aria-label="Delete"
/>
Expand Down

0 comments on commit 969c61c

Please sign in to comment.