This is an automated email from the ASF dual-hosted git repository.
bbovenzi pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git
The following commit(s) were added to refs/heads/main by this push:
new 946e1e0c4e Move external logs links to top of react logs page (#35668)
946e1e0c4e is described below
commit 946e1e0c4e078aec6d76c708d578af053fdd62b6
Author: Brent Bovenzi <[email protected]>
AuthorDate: Wed Nov 15 12:05:07 2023 -0500
Move external logs links to top of react logs page (#35668)
---
.../js/dag/details/taskInstance/Logs/index.tsx | 36 ++++++++++------------
1 file changed, 16 insertions(+), 20 deletions(-)
diff --git a/airflow/www/static/js/dag/details/taskInstance/Logs/index.tsx
b/airflow/www/static/js/dag/details/taskInstance/Logs/index.tsx
index 97499b41a7..16a5e2159f 100644
--- a/airflow/www/static/js/dag/details/taskInstance/Logs/index.tsx
+++ b/airflow/www/static/js/dag/details/taskInstance/Logs/index.tsx
@@ -22,7 +22,6 @@ import {
Text,
Box,
Flex,
- Divider,
Button,
Checkbox,
Icon,
@@ -175,6 +174,22 @@ const Logs = ({
return (
<>
+ {externalLogName && externalIndexes.length > 0 && (
+ <Box my={1}>
+ <Text>View Logs in {externalLogName} (by attempts):</Text>
+ <Flex flexWrap="wrap">
+ {externalIndexes.map((index) => (
+ <LogLink
+ key={index}
+ dagId={dagId}
+ taskId={taskId}
+ executionDate={executionDate}
+ tryNumber={index}
+ />
+ ))}
+ </Flex>
+ </Box>
+ )}
{tryNumber !== undefined && (
<>
<Box>
@@ -280,25 +295,6 @@ const Logs = ({
)}
</>
)}
- {externalLogName && externalIndexes.length > 0 && (
- <>
- <Box>
- <Text>View Logs in {externalLogName} (by attempts):</Text>
- <Flex flexWrap="wrap">
- {externalIndexes.map((index) => (
- <LogLink
- key={index}
- dagId={dagId}
- taskId={taskId}
- executionDate={executionDate}
- tryNumber={index}
- />
- ))}
- </Flex>
- </Box>
- <Divider my={2} />
- </>
- )}
</>
);
};