bbovenzi commented on code in PR #46471: URL: https://github.com/apache/airflow/pull/46471#discussion_r1943424042
########## airflow/ui/src/queries/useTrigger.ts: ########## @@ -73,6 +73,8 @@ export const useTrigger = ({ dagId, onSuccessConfirm }: { dagId: string; onSucce ? new Date(dagRunRequestBody.dataIntervalEnd) : undefined; + const LogicalDate = dagRunRequestBody.logicalDate ? new Date(dagRunRequestBody.logicalDate) : undefined; Review Comment: Oh I didn't catch this before but all of these variables should start with a lower case letter. Do you mind fixing it here and for dataIntervalStart and dataIntervalEnd? -- 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: commits-unsubscr...@airflow.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org