Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions packages/manager/.changeset/pr-12674-fixed-1754934049071.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@linode/manager": Fixed
---

Incorrect tags permission check on Linode details page ([#12674](https://github.com/linode/manager/pull/12674))
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ export const LinodeEntityDetailFooter = React.memo((props: FooterProps) => {
linodeTags,
} = props;

const { data: permissions } = usePermissions('account', ['update_account']);
const { data: permissions } = usePermissions('account', ['is_account_admin']);

const { mutateAsync: updateLinode } = useLinodeUpdateMutation(linodeId);

Expand Down Expand Up @@ -143,7 +143,7 @@ export const LinodeEntityDetailFooter = React.memo((props: FooterProps) => {
}}
>
<TagCell
disabled={!permissions.update_account}
disabled={!permissions.is_account_admin}
entityLabel={linodeLabel}
sx={{
width: '100%',
Expand Down
Loading