Skip to content

Commit ee33f51

Browse files
authored
Merge pull request #12783 from linode/staging
Release v1.149.1 - staging → master
2 parents ea5677c + e71978b commit ee33f51

File tree

4 files changed

+17
-3
lines changed

4 files changed

+17
-3
lines changed

packages/manager/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@ 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-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:

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.149.0",
5+
"version": "1.149.1",
66
"private": true,
77
"type": "module",
88
"bugs": {

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

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff 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

packages/manager/src/features/Linodes/LinodesDetail/LinodesDetailNavigation.tsx

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff 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) {

0 commit comments

Comments
 (0)