mirror of
https://github.com/n8n-io/n8n.git
synced 2024-12-28 22:19:41 -08: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 a new issue