mirror of
https://github.com/n8n-io/n8n.git
synced 2026-05-27 14:57:21 +02:00
fix(editor): Lower throttle time to only briefly show execution running status (no-changelog) (#11921)
This commit is contained in:
parent
a6c7732e72
commit
a7de34dac6
|
|
@ -59,7 +59,7 @@ export function useCanvasNode() {
|
|||
const executionStatus = computed(() => data.value.execution.status);
|
||||
const executionWaiting = computed(() => data.value.execution.waiting);
|
||||
const executionRunning = computed(() => data.value.execution.running);
|
||||
const executionRunningThrottled = refThrottled(executionRunning, 300);
|
||||
const executionRunningThrottled = refThrottled(executionRunning, 50);
|
||||
|
||||
const runDataOutputMap = computed(() => data.value.runData.outputMap);
|
||||
const runDataIterations = computed(() => data.value.runData.iterations);
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user