noeunkim commented on code in PR #52437:
URL: https://github.com/apache/airflow/pull/52437#discussion_r2173824005


##########
airflow-core/src/airflow/ui/public/i18n/locales/en/common.json:
##########
@@ -123,6 +123,9 @@
     "scheduled": "Scheduled"
   },
   "runId": "Run ID",
+  "runIdFilter": {

Review Comment:
   Regarding the key structure, fixed as you suggested as well. Good catch! 
Thanks!



##########
airflow-core/src/airflow/api_fastapi/core_api/routes/public/dag_run.py:
##########
@@ -349,6 +350,9 @@ def get_dag_runs(
 
         query = query.filter(DagRun.dag_id == 
dag_id).options(joinedload(DagRun.dag_model))
 
+    if run_id:
+        query = query.filter(DagRun.run_id == run_id)
+

Review Comment:
   Great suggestion on DI! Applied.



-- 
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]

Reply via email to