Skip to content

Commit

Permalink
chore: inject org into editor title
Browse files Browse the repository at this point in the history
  • Loading branch information
Keyrxng committed Nov 22, 2024
1 parent 2921cb9 commit 1778a64
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion static/scripts/rendering/config-editor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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");
}

0 comments on commit 1778a64

Please sign in to comment.