feat(sqllab): Improved query status indicator bar (#36936)

This commit is contained in:
JUST.in DO IT
2026-01-26 08:57:52 -08:00
committed by GitHub
parent 647f21c26a
commit 0fd528c7af
8 changed files with 415 additions and 93 deletions

View File

@@ -392,7 +392,7 @@ export function startQuery(query: Query, runPreviewOnly?: boolean) {
id: query.id ? query.id : nanoid(11),
progress: 0,
startDttm: now(),
state: query.runAsync ? 'pending' : 'running',
state: 'pending',
cached: false,
});
return { type: START_QUERY, query, runPreviewOnly } as const;