From aa55f8c7778e1d375c7450ab0254be6c3f02e8f7 Mon Sep 17 00:00:00 2001 From: iris Date: Mon, 22 Jun 2026 22:02:36 +0200 Subject: [PATCH] fix(dashboard): import appendLinkified in schedules.js renderReminders() calls appendLinkified() (for the reminder file_path and message bodies) but schedules.js only imported { $, el } from common.js, so the reminders_changed SSE handler threw 'ReferenceError: appendLinkified is not defined' and the reminders pane failed to render. appendLinkified is exported from common.js; add it to the import. Fixes #1909. --- frontend/packages/dashboard/src/schedules.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/packages/dashboard/src/schedules.js b/frontend/packages/dashboard/src/schedules.js index 6bb5cf7b..410567c0 100644 --- a/frontend/packages/dashboard/src/schedules.js +++ b/frontend/packages/dashboard/src/schedules.js @@ -11,7 +11,7 @@ // tracking); reads the shared agent roster from state.js for the // target-chip pickers. Render + format helpers come from util.js. -import { $, el } from './common.js'; +import { $, el, appendLinkified } from './common.js'; import { themedConfirm, themedToast } from './modal.js'; import { paintAtomic, fmtAgo, fmtDuration } from './util.js'; import { containersState } from './state.js';