Skip to content

Commit

Permalink
Merge pull request #1623 from RoadieHQ/sc-22754-make-url-work
Browse files Browse the repository at this point in the history
Actually call the function to make the URL
  • Loading branch information
Xantier committed Sep 18, 2024
2 parents 050f49c + 1e83f94 commit e2746f2
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions .changeset/cold-socks-know.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@roadiehq/backstage-plugin-argo-cd': patch
---

Modify linking functionality construction to construct the link
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"version": "1.0.0",
"private": true,
"engines": {
"node": "14 || 16 || 18"
"node": "14 || 16 || 18 || 20"
},
"scripts": {
"dev": "concurrently \"yarn start\" \"yarn start-backend\"",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ export const ArgoCDHistoryTable = ({
render: (row: any): React.ReactNode =>
linkUrl ? (
<Link
href={`${linkUrl}/applications/${
href={`${linkUrl(row)}/applications/${
namespaced ? `${row.appNamespace}/${row.app}` : row.app
}`}
target="_blank"
Expand Down

0 comments on commit e2746f2

Please sign in to comment.