pierrejeambrun commented on PR #64374:
URL: https://github.com/apache/airflow/pull/64374#issuecomment-4183695794
I just rebased the branch to remove unrelated CI failure.
Can you fix the formatting for:
```diff
const nextRunStat =
- isStale
- ? []
- : [
- {
- label: translate("dagDetails.nextRun"),
- value: Boolean(dag?.next_dagrun_run_after) ? (
- <DagRunInfo
- logicalDate={dag?.next_dagrun_logical_date}
- runAfter={dag?.next_dagrun_run_after as string}
- />
- ) : undefined,
- },
- ];
+ const nextRunStat = isStale
+ ? []
+ : [
+ {
+ label: translate("dagDetails.nextRun"),
+ value: Boolean(dag?.next_dagrun_run_after) ? (
+ <DagRunInfo
+ logicalDate={dag?.next_dagrun_logical_date}
+ runAfter={dag?.next_dagrun_run_after as string}
+ />
+ ) : undefined,
+ },
+ ];
```
CI is complaining
--
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]