mirror of
				https://github.com/zadam/trilium.git
				synced 2025-10-31 18:36:30 +01:00 
			
		
		
		
	fix(build): tests failing due to cyclic dependencies
This commit is contained in:
		| @@ -1,7 +1,6 @@ | ||||
| import dayjs from "dayjs"; | ||||
| import { Modal } from "bootstrap"; | ||||
| import type { ViewScope } from "./link.js"; | ||||
| import appContext from "../components/app_context.js"; | ||||
|  | ||||
| function reloadFrontendApp(reason?: string) { | ||||
|     if (reason) { | ||||
| @@ -403,13 +402,15 @@ function openHelp($button: JQuery<HTMLElement>) { | ||||
|     } | ||||
| } | ||||
|  | ||||
| function openInAppHelp($button: JQuery<HTMLElement>) { | ||||
| async function openInAppHelp($button: JQuery<HTMLElement>) { | ||||
|     if ($button.length === 0) { | ||||
|         return; | ||||
|     } | ||||
|  | ||||
|     const inAppHelpPage = $button.attr("data-in-app-help"); | ||||
|     if (inAppHelpPage) { | ||||
|         // Dynamic import to avoid import issues in tests. | ||||
|         const appContext = (await import("../components/app_context.js")).default; | ||||
|         const subContexts = appContext.tabManager.getActiveContext().getSubContexts(); | ||||
|         const targetNote = `_help_${inAppHelpPage}`; | ||||
|         const helpSubcontext = subContexts.find((s) => s.viewScope?.viewMode === "contextual-help"); | ||||
|   | ||||
		Reference in New Issue
	
	Block a user