Skip to content

Commit

Permalink
AIP-38 Fix log width (apache#45508)
Browse files Browse the repository at this point in the history
  • Loading branch information
pierrejeambrun authored Jan 9, 2025
1 parent 1c98e51 commit 6ae4f5f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion airflow/ui/src/pages/TaskInstance/Logs/TaskLogContent.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down

0 comments on commit 6ae4f5f

Please sign in to comment.