diff --git a/frontend/packages/dashboard/src/flow.js b/frontend/packages/dashboard/src/flow.js index 07cfddd..18f0a0f 100644 --- a/frontend/packages/dashboard/src/flow.js +++ b/frontend/packages/dashboard/src/flow.js @@ -11,18 +11,13 @@ // runs purely on the broker stream + an initial /api/state fetch // (compose autocomplete needs the live container list). -import { create as termCreate, linkify as termLinkify } from '@hive/shared/terminal.js'; +import { create as termCreate } from '@hive/shared/terminal.js'; import { $, el, Panel, NOTIF, appendLinkified, } from './common.js'; -// Common helpers (mdNode in common.js) probe `window.marked` at use -// time. Flow page doesn't actually call mdNode (it has no file-preview -// path); we set it anyway so any future preview-on-flow lands hot. -window.HiveTerminal = { create: termCreate, linkify: termLinkify }; - (() => { Panel.bind(); NOTIF.bind();