From 1778a64a014baa8e9f7cfff7e56175d9a82881b3 Mon Sep 17 00:00:00 2001 From: Keyrxng <106303466+Keyrxng@users.noreply.github.com> Date: Fri, 22 Nov 2024 18:59:56 +0000 Subject: [PATCH] chore: inject org into editor title --- static/scripts/rendering/config-editor.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/static/scripts/rendering/config-editor.ts b/static/scripts/rendering/config-editor.ts index 1561070..604c256 100644 --- a/static/scripts/rendering/config-editor.ts +++ b/static/scripts/rendering/config-editor.ts @@ -100,7 +100,9 @@ export function renderConfigEditor(renderer: ManifestRenderer, pluginManifest: M viewportCell.appendChild(readmeContainer); } - updateGuiTitle(`Editing Configuration for ${pluginManifest?.name}`); + const org = localStorage.getItem("selectedOrg"); + + updateGuiTitle(`Editing Configuration for ${pluginManifest?.name} in ${org}`); renderer.manifestGui?.classList.add("plugin-editor"); renderer.manifestGui?.classList.add("rendered"); }