scaffolder: mention that pages must use HTTPS for template editor

Signed-off-by: Patrik Oldsberg <poldsberg@gmail.com>
This commit is contained in:
Patrik Oldsberg
2025-04-07 10:56:49 +02:00
parent 61f169210c
commit 407eba1522
3 changed files with 11 additions and 4 deletions
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/plugin-scaffolder': patch
---
Tweaked template editor tooltip to mention HTTPS requirement.
+2 -2
View File
@@ -396,10 +396,10 @@ export const scaffolderTranslationRef: TranslationRef<
readonly 'templateEditorPage.templateEditorIntro.title': 'Get started by choosing one of the options below';
readonly 'templateEditorPage.templateEditorIntro.loadLocal.title': 'Load Template Directory';
readonly 'templateEditorPage.templateEditorIntro.loadLocal.description': 'Load a local template directory, allowing you to both edit and try executing your own template.';
readonly 'templateEditorPage.templateEditorIntro.loadLocal.unsupportedTooltip': 'Only supported in some Chromium-based browsers';
readonly 'templateEditorPage.templateEditorIntro.loadLocal.unsupportedTooltip': 'Only supported in some Chromium-based browsers with the page loaded over HTTPS';
readonly 'templateEditorPage.templateEditorIntro.createLocal.title': 'Create New Template';
readonly 'templateEditorPage.templateEditorIntro.createLocal.description': 'Create a local template directory, allowing you to both edit and try executing your own template.';
readonly 'templateEditorPage.templateEditorIntro.createLocal.unsupportedTooltip': 'Only supported in some Chromium-based browsers';
readonly 'templateEditorPage.templateEditorIntro.createLocal.unsupportedTooltip': 'Only supported in some Chromium-based browsers with the page loaded over HTTPS';
readonly 'templateEditorPage.templateEditorIntro.formEditor.title': 'Template Form Playground';
readonly 'templateEditorPage.templateEditorIntro.formEditor.description': 'Preview and edit a template form, either using a sample template or by loading a template from the catalog.';
readonly 'templateEditorPage.templateEditorIntro.fieldExplorer.title': 'Custom Field Explorer';
+4 -2
View File
@@ -256,13 +256,15 @@ export const scaffolderTranslationRef = createTranslationRef({
title: 'Load Template Directory',
description:
'Load a local template directory, allowing you to both edit and try executing your own template.',
unsupportedTooltip: 'Only supported in some Chromium-based browsers',
unsupportedTooltip:
'Only supported in some Chromium-based browsers with the page loaded over HTTPS',
},
createLocal: {
title: 'Create New Template',
description:
'Create a local template directory, allowing you to both edit and try executing your own template.',
unsupportedTooltip: 'Only supported in some Chromium-based browsers',
unsupportedTooltip:
'Only supported in some Chromium-based browsers with the page loaded over HTTPS',
},
formEditor: {
title: 'Template Form Playground',