Files
ignis/ui/bootstrap.js

12 lines
317 B
JavaScript
Raw Normal View History

import { vaultService } from "../services/vault-service.js";
2026-03-10 22:31:01 +01:00
export function showVaultManager() {
if (!document.querySelector(".workspace")) return;
2026-03-18 18:28:07 +01:00
if (document.querySelector(".vault-manager-overlay")) return;
2026-03-10 22:31:01 +01:00
2026-03-18 18:28:07 +01:00
new window.IgnisUI.VaultManager({
target: document.body,
props: { vaultService },
2026-03-10 22:31:01 +01:00
});
}