From a67c14463e1751e12977f8247bcf6c60fe85f2c1 Mon Sep 17 00:00:00 2001 From: Christoph Jerolimov Date: Wed, 12 Nov 2025 12:53:23 +0100 Subject: [PATCH 1/2] fix(catalog-graph): fix zoom out description (replace & with &) Signed-off-by: Christoph Jerolimov --- .changeset/chatty-sides-wear.md | 5 +++++ plugins/catalog-graph/report-alpha.api.md | 2 +- plugins/catalog-graph/src/translation.ts | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) create mode 100644 .changeset/chatty-sides-wear.md diff --git a/.changeset/chatty-sides-wear.md b/.changeset/chatty-sides-wear.md new file mode 100644 index 0000000000..da3b528ef3 --- /dev/null +++ b/.changeset/chatty-sides-wear.md @@ -0,0 +1,5 @@ +--- +'@backstage/plugin-catalog-graph': patch +--- + +fix zoom out description (replace & with &) diff --git a/plugins/catalog-graph/report-alpha.api.md b/plugins/catalog-graph/report-alpha.api.md index 0d06beacc4..81b5377f36 100644 --- a/plugins/catalog-graph/report-alpha.api.md +++ b/plugins/catalog-graph/report-alpha.api.md @@ -30,7 +30,7 @@ export const catalogGraphTranslationRef: TranslationRef< readonly 'catalogGraphPage.supportButtonDescription': 'Start tracking your component in by adding it to the software catalog.'; readonly 'catalogGraphPage.simplifiedSwitchLabel': 'Simplified'; readonly 'catalogGraphPage.mergeRelationsSwitchLabel': 'Merge relations'; - readonly 'catalogGraphPage.zoomOutDescription': 'Use pinch & zoom to move around the diagram. Click to change active node, shift click to navigate to entity.'; + readonly 'catalogGraphPage.zoomOutDescription': 'Use pinch & zoom to move around the diagram. Click to change active node, shift click to navigate to entity.'; readonly 'catalogGraphPage.curveFilter.title': 'Curve'; readonly 'catalogGraphPage.curveFilter.curveStepBefore': 'Step Before'; readonly 'catalogGraphPage.curveFilter.curveMonotoneX': 'Monotone X'; diff --git a/plugins/catalog-graph/src/translation.ts b/plugins/catalog-graph/src/translation.ts index 33c4ac2d3a..84b76f965d 100644 --- a/plugins/catalog-graph/src/translation.ts +++ b/plugins/catalog-graph/src/translation.ts @@ -31,7 +31,7 @@ export const catalogGraphTranslationRef = createTranslationRef({ simplifiedSwitchLabel: 'Simplified', mergeRelationsSwitchLabel: 'Merge relations', zoomOutDescription: - 'Use pinch & zoom to move around the diagram. Click to change active node, shift click to navigate to entity.', + 'Use pinch & zoom to move around the diagram. Click to change active node, shift click to navigate to entity.', curveFilter: { title: 'Curve', curveMonotoneX: 'Monotone X', From ef58c92f2709d3f511f4620698d904455db49de7 Mon Sep 17 00:00:00 2001 From: Ben Lambert Date: Tue, 25 Nov 2025 15:37:01 +0100 Subject: [PATCH 2/2] Apply suggestions from code review Co-authored-by: Andre Wanlin <67169551+awanlin@users.noreply.github.com> Signed-off-by: Ben Lambert --- .changeset/chatty-sides-wear.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.changeset/chatty-sides-wear.md b/.changeset/chatty-sides-wear.md index da3b528ef3..33937a1286 100644 --- a/.changeset/chatty-sides-wear.md +++ b/.changeset/chatty-sides-wear.md @@ -2,4 +2,4 @@ '@backstage/plugin-catalog-graph': patch --- -fix zoom out description (replace & with &) +Fixed zoom out description (replace `&` with &)