File tree Expand file tree Collapse file tree 4 files changed +17
-3
lines changed
Expand file tree Collapse file tree 4 files changed +17
-3
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,12 @@ 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-08-28] - v1.149.1
8+
9+ ### Fixed:
10+
11+ - Broken entity link on Linodes list card view
12+
713## [ 2025-08-26] - v1.149.0
814
915### Added:
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.149.0 " ,
5+ "version" : " 1.149.1 " ,
66 "private" : true ,
77 "type" : " module" ,
88 "bugs" : {
Original file line number Diff line number Diff line change @@ -121,7 +121,11 @@ export const LinodeEntityDetailHeader = (
121121 return (
122122 < EntityHeader
123123 isSummaryView = { isSummaryView }
124- title = { < StyledLink to = { `linodes/${ linodeId } ` } > { linodeLabel } </ StyledLink > }
124+ title = {
125+ < StyledLink params = { { linodeId } } to = "/linodes/$linodeId" >
126+ { linodeLabel }
127+ </ StyledLink >
128+ }
125129 variant = { variant }
126130 >
127131 < Box
Original file line number Diff line number Diff line change @@ -112,7 +112,11 @@ const LinodesDetailNavigation = () => {
112112 ] ) ;
113113
114114 if ( location . pathname === `/linodes/${ linodeId } ` ) {
115- navigate ( { to : '/linodes/$linodeId/metrics' , params : { linodeId } } ) ;
115+ navigate ( {
116+ to : '/linodes/$linodeId/metrics' ,
117+ params : { linodeId } ,
118+ replace : true ,
119+ } ) ;
116120 }
117121
118122 if ( error ) {
You can’t perform that action at this time.
0 commit comments