fix(editor): Lower throttle time to only briefly show execution running status (no-changelog) (#11921)

This commit is contained in:
Alex Grozav
2024-11-27 13:42:13 +02:00
committed by GitHub
parent a6c7732e72
commit a7de34dac6

View File

@@ -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);