fix: TagFilterService non importé dans config/search/viewer — bloquait rendu résultats et affichage docs
This commit is contained in:
parent
8da6e176f0
commit
5d006ddc35
@ -2,7 +2,7 @@
|
|||||||
import { api } from './auth.js';
|
import { api } from './auth.js';
|
||||||
import { state } from './state.js';
|
import { state } from './state.js';
|
||||||
import { el, icon, openFile } from './viewer.js';
|
import { el, icon, openFile } from './viewer.js';
|
||||||
import { syncVaultSelectors, setSelectedVaultContext, refreshSidebarForContext, loadVaults, loadTags } from './sidebar.js';
|
import { syncVaultSelectors, setSelectedVaultContext, refreshSidebarForContext, loadVaults, loadTags, TagFilterService } from './sidebar.js';
|
||||||
import { escapeHtml, safeCreateIcons } from './utils.js';
|
import { escapeHtml, safeCreateIcons } from './utils.js';
|
||||||
import { showToast, closeHeaderMenu, closeMobileSidebar } from './ui.js';
|
import { showToast, closeHeaderMenu, closeMobileSidebar } from './ui.js';
|
||||||
|
|
||||||
|
|||||||
@ -5,7 +5,7 @@ import { safeCreateIcons } from './utils.js';
|
|||||||
import { showLoading, el, hideProgressBar, showWelcome, highlightSearchText } from './viewer.js';
|
import { showLoading, el, hideProgressBar, showWelcome, highlightSearchText } from './viewer.js';
|
||||||
import { _getEffective } from './config.js';
|
import { _getEffective } from './config.js';
|
||||||
import { TabManager, showToast } from './ui.js';
|
import { TabManager, showToast } from './ui.js';
|
||||||
import { addTagFilter, buildSearchResultsHeader, shouldDisplayPath, removeTagFilter } from './sidebar.js';
|
import { addTagFilter, buildSearchResultsHeader, shouldDisplayPath, removeTagFilter, TagFilterService } from './sidebar.js';
|
||||||
// ---------------------------------------------------------------------------
|
// ---------------------------------------------------------------------------
|
||||||
// Search History Service (localStorage, LIFO, max 50, dedup)
|
// Search History Service (localStorage, LIFO, max 50, dedup)
|
||||||
// ---------------------------------------------------------------------------
|
// ---------------------------------------------------------------------------
|
||||||
|
|||||||
@ -3,7 +3,7 @@ import { api } from './auth.js';
|
|||||||
import { state } from './state.js';
|
import { state } from './state.js';
|
||||||
import { escapeHtml, safeCreateIcons, safeHighlight, getFileIcon } from './utils.js';
|
import { escapeHtml, safeCreateIcons, safeHighlight, getFileIcon } from './utils.js';
|
||||||
import { TabManager, closeMobileSidebar, ContextMenuManager, RightSidebarManager, showToast } from './ui.js';
|
import { TabManager, closeMobileSidebar, ContextMenuManager, RightSidebarManager, showToast } from './ui.js';
|
||||||
import { syncActiveFileTreeItem, searchByTag } from './sidebar.js';
|
import { syncActiveFileTreeItem, searchByTag, TagFilterService } from './sidebar.js';
|
||||||
import { AutocompleteDropdown } from './search.js';
|
import { AutocompleteDropdown } from './search.js';
|
||||||
import { initDashboardTabs } from './sync.js';
|
import { initDashboardTabs } from './sync.js';
|
||||||
import { DashboardStatsWidget, DashboardRecentWidget, DashboardBookmarkWidget, DashboardSharedWidget, DashboardConflictsWidget } from './dashboard.js';
|
import { DashboardStatsWidget, DashboardRecentWidget, DashboardBookmarkWidget, DashboardSharedWidget, DashboardConflictsWidget } from './dashboard.js';
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user