yuseok89 commented on code in PR #70470:
URL: https://github.com/apache/airflow/pull/70470#discussion_r3744076984
##########
airflow-core/src/airflow/ui/src/pages/DagsList/DagsList.tsx:
##########
@@ -314,6 +316,7 @@ export const DagsList = () => {
dagDisplayNamePattern: Boolean(dagDisplayNamePattern) ?
dagDisplayNamePattern : undefined,
dagRunsLimit,
dagRunState,
+ dagRunStateWithinHours: Boolean(dagRunState) && withinHours !== null ?
Number(withinHours) : undefined,
Review Comment:
Thanks.
Added a guard so only a valid positive number is used.
--
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]