Skip to content

Commit c90671b

Browse files
authored
Merge pull request #12528 from linode/staging
Release v1.146.1 - staging → master
2 parents 78d384e + 911a336 commit c90671b

File tree

3 files changed

+14
-2
lines changed

3 files changed

+14
-2
lines changed

packages/manager/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,13 @@ All notable changes to this project will be documented in this file.
44

55
The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/).
66

7+
## [2025-07-16] - v1.146.1
8+
9+
10+
### Fixed:
11+
12+
- IAM RBAC: Fix a permission check for notification banner in Linode details component ([#12525](https://github.com/linode/manager/pull/12525))
13+
714
## [2025-07-15] - v1.146.0
815

916

packages/manager/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "linode-manager",
33
"author": "Linode",
44
"description": "The Linode Manager website",
5-
"version": "1.146.0",
5+
"version": "1.146.1",
66
"private": true,
77
"type": "module",
88
"bugs": {

packages/manager/src/features/Linodes/LinodeEntityDetail.tsx

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,12 @@ export const LinodeEntityDetail = (props: Props) => {
7474
linodeId: linode.id,
7575
});
7676

77-
const { permissions } = usePermissions('linode', ['update_linode']);
77+
const { permissions } = usePermissions(
78+
'linode',
79+
['update_linode'],
80+
linode.id
81+
);
82+
7883
const imageVendor =
7984
images?.find((i) => i.id === linode.image)?.vendor ?? null;
8085

0 commit comments

Comments
 (0)