yingxuanwangxuan commented on code in PR #25042:
URL: https://github.com/apache/airflow/pull/25042#discussion_r954646261
##########
airflow/www/static/js/api/useGridData.ts:
##########
@@ -49,7 +49,7 @@ const emptyGridData: GridData = {
},
};
-export const areActiveRuns = (runs: DagRun[] = []) => runs.filter((run) =>
['queued', 'running', 'scheduled'].includes(run.state)).length > 0;
+export const areActiveRuns = (runs: DagRun[] = []) => runs.filter((run) =>
['manual', 'manual'].includes(run.runType)).filter((run) => ['queued',
'running', 'scheduled'].includes(run.state)).length > 0;
Review Comment:
thanks for fix this. @bbovenzi can you review it again?
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]