File tree Expand file tree Collapse file tree 3 files changed +14
-2
lines changed
Expand file tree Collapse file tree 3 files changed +14
-2
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,13 @@ All notable changes to this project will be documented in this file.
44
55The 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
Original file line number Diff line number Diff line change 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" : {
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments