From 29d1ab3850cd58a42af3d3eda53ea54777dc7197 Mon Sep 17 00:00:00 2001 From: Diego Imbert Date: Fri, 11 Sep 2026 18:04:47 +0200 Subject: [PATCH] fix: keep a new schedule's template readable after its first load Co-Authored-By: Claude Opus 5 (1M context) Claude-Session: https://claude.ai/code/session_01ViTUkt4czrvZdxdWwxqRAQ --- .../lib/components/triggers/schedules/ScheduleEditorInner.svelte | 1 - 1 file changed, 1 deletion(-) diff --git a/frontend/src/lib/components/triggers/schedules/ScheduleEditorInner.svelte b/frontend/src/lib/components/triggers/schedules/ScheduleEditorInner.svelte index 728aa26ce4..2d8c7cf970 100644 --- a/frontend/src/lib/components/triggers/schedules/ScheduleEditorInner.svelte +++ b/frontend/src/lib/components/triggers/schedules/ScheduleEditorInner.svelte @@ -185,7 +185,6 @@ async load({ workspace, path }) { if (isTemporaryPath(path)) { const opts = newTemplates.get(path) - newTemplates.delete(path) if (!opts) throw new Error('No template for this schedule') return { template: await newScheduleCfg(opts) } }