This is an automated email from the ASF dual-hosted git repository.
pierrejeambrun 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 6ae4f5fd8a4 AIP-38 Fix log width (#45508)
6ae4f5fd8a4 is described below
commit 6ae4f5fd8a4289a7720c37da8dfd5abe155d0e41
Author: Pierre Jeambrun <[email protected]>
AuthorDate: Thu Jan 9 22:21:04 2025 +0800
AIP-38 Fix log width (#45508)
---
airflow/ui/src/pages/TaskInstance/Logs/TaskLogContent.tsx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/airflow/ui/src/pages/TaskInstance/Logs/TaskLogContent.tsx
b/airflow/ui/src/pages/TaskInstance/Logs/TaskLogContent.tsx
index 1da00d4a1a7..2134607723f 100644
--- a/airflow/ui/src/pages/TaskInstance/Logs/TaskLogContent.tsx
+++ b/airflow/ui/src/pages/TaskInstance/Logs/TaskLogContent.tsx
@@ -35,7 +35,7 @@ export const TaskLogContent = ({ error, isLoading, logError,
parsedLogs, wrap }:
<ErrorAlert error={error ?? logError} />
<Skeleton />
<ProgressBar size="xs" visibility={isLoading ? "visible" : "hidden"} />
- <Code overflow="auto" py={3} textWrap={wrap ? "pre" : "nowrap"}>
+ <Code overflow="auto" py={3} textWrap={wrap ? "pre" : "nowrap"}
width="100%">
<VStack alignItems="flex-start">{parsedLogs}</VStack>
</Code>
</Box>