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.
This commit is contained in:
parent
f73bcc66eb
commit
aa55f8c777
1 changed files with 1 additions and 1 deletions
|
|
@ -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';
|
||||
|
|
|
|||
Loading…
Reference in a new issue