From 2004a49b2da127d5c715b6f24b401e0e20461a29 Mon Sep 17 00:00:00 2001 From: Bruno Charest Date: Fri, 29 May 2026 11:58:04 -0400 Subject: [PATCH] =?UTF-8?q?fix:=20api,=20AuthManager,=20initLoginForm,=20G?= =?UTF-8?q?raphViewManager=20=E2=80=94=20imports=20manquants=20dans=20sear?= =?UTF-8?q?ch/ui/utils?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/js/search.js | 1 + frontend/js/ui.js | 2 ++ frontend/js/utils.js | 1 + 3 files changed, 4 insertions(+) diff --git a/frontend/js/search.js b/frontend/js/search.js index 1822ec0..18abcea 100644 --- a/frontend/js/search.js +++ b/frontend/js/search.js @@ -1,4 +1,5 @@ /* ObsiGate — Search module */ +import { api } from './auth.js'; import { state } from './state.js'; import { safeCreateIcons } from './utils.js'; import { showLoading, el, hideProgressBar, showWelcome } from './viewer.js'; diff --git a/frontend/js/ui.js b/frontend/js/ui.js index d1155fc..c378778 100644 --- a/frontend/js/ui.js +++ b/frontend/js/ui.js @@ -1,8 +1,10 @@ /* ObsiGate — UI module */ +import { api, AuthManager, initLoginForm } from './auth.js'; import { state } from './state.js'; import { openFile, showWelcome } from './viewer.js'; import { safeCreateIcons, getFileIcon, escapeHtml } from './utils.js'; import { syncActiveFileTreeItem } from './sidebar.js'; +import { GraphViewManager } from './graph.js'; // --------------------------------------------------------------------------- // Right Sidebar Manager // --------------------------------------------------------------------------- diff --git a/frontend/js/utils.js b/frontend/js/utils.js index 1a6d216..0493ad2 100644 --- a/frontend/js/utils.js +++ b/frontend/js/utils.js @@ -1,4 +1,5 @@ import { state } from './state.js'; +import { api } from './auth.js'; // --------------------------------------------------------------------------- // File extension → Lucide icon mapping