mirror of
https://github.com/Nystik-gh/ignis.git
synced 2026-06-17 04:35:53 +00:00
12 lines
317 B
JavaScript
12 lines
317 B
JavaScript
import { vaultService } from "../services/vault-service.js";
|
|
|
|
export function showVaultManager() {
|
|
if (!document.querySelector(".workspace")) return;
|
|
if (document.querySelector(".vault-manager-overlay")) return;
|
|
|
|
new window.IgnisUI.VaultManager({
|
|
target: document.body,
|
|
props: { vaultService },
|
|
});
|
|
}
|