diff --git a/frontend/src/pages/org/workflow-detail.ts b/frontend/src/pages/org/workflow-detail.ts index e2348828..650a855b 100644 --- a/frontend/src/pages/org/workflow-detail.ts +++ b/frontend/src/pages/org/workflow-detail.ts @@ -191,10 +191,12 @@ export class WorkflowDetail extends LiteElement { this.isLoading = false; - // Restart timer for next poll - this.timerId = window.setTimeout(() => { - this.fetchWorkflow(); - }, 1000 * POLL_INTERVAL_SECONDS); + if (!this.isEditing) { + // Restart timer for next poll + this.timerId = window.setTimeout(() => { + this.fetchWorkflow(); + }, 1000 * POLL_INTERVAL_SECONDS); + } } render() {