This is an automated email from the ASF dual-hosted git repository.
jscheffl pushed a commit to branch v3-1-test
in repository https://gitbox.apache.org/repos/asf/airflow.git
The following commit(s) were added to refs/heads/v3-1-test by this push:
new 3dafbf9dc49 [v3-1-test] Fix multi-line drag selection in task log view
(#56238) (#56300)
3dafbf9dc49 is described below
commit 3dafbf9dc4931ecbce2a1ef574e6241a099c8460
Author: github-actions[bot]
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Wed Oct 1 23:31:06 2025 +0200
[v3-1-test] Fix multi-line drag selection in task log view (#56238) (#56300)
(cherry picked from commit 5f8eff1d34d60a5d98d21b770f2b215f64e9a6ab)
Co-authored-by: Brunda10 <[email protected]>
Co-authored-by: Brent Bovenzi <[email protected]>
---
.../src/airflow/ui/src/pages/TaskInstance/Logs/TaskLogContent.tsx | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git
a/airflow-core/src/airflow/ui/src/pages/TaskInstance/Logs/TaskLogContent.tsx
b/airflow-core/src/airflow/ui/src/pages/TaskInstance/Logs/TaskLogContent.tsx
index cbb1308dec7..e66d2202f2f 100644
--- a/airflow-core/src/airflow/ui/src/pages/TaskInstance/Logs/TaskLogContent.tsx
+++ b/airflow-core/src/airflow/ui/src/pages/TaskInstance/Logs/TaskLogContent.tsx
@@ -148,8 +148,7 @@ export const TaskLogContent = ({ error, isLoading,
logError, parsedLogs, wrap }:
key={virtualRow.key}
position="absolute"
ref={rowVirtualizer.measureElement}
- top={0}
- transform={`translateY(${virtualRow.start}px)`}
+ top={`${virtualRow.start}px`}
width={wrap ? "100%" : "max-content"}
>
{parsedLogs[virtualRow.index] ?? undefined}