This is an automated email from the ASF dual-hosted git repository.
pierrejeambrun 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 8c8eda571c8 [v3-1-test] fix: fix minimap on DAG graph view not showing
DAG nodes (#61511) (#61530)
8c8eda571c8 is described below
commit 8c8eda571c8fb22f859cfb75032f99855c4bf4b6
Author: github-actions[bot]
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Fri Feb 6 15:16:52 2026 +0100
[v3-1-test] fix: fix minimap on DAG graph view not showing DAG nodes
(#61511) (#61530)
(cherry picked from commit 05d0d445f3c7694a028d4783aae7df740c2f88f1)
Co-authored-by: Itay Adler <[email protected]>
---
airflow-core/src/airflow/ui/src/components/Graph/reactflowUtils.ts | 2 ++
1 file changed, 2 insertions(+)
diff --git a/airflow-core/src/airflow/ui/src/components/Graph/reactflowUtils.ts
b/airflow-core/src/airflow/ui/src/components/Graph/reactflowUtils.ts
index dcfd4dcc41f..54544d92cc1 100644
--- a/airflow-core/src/airflow/ui/src/components/Graph/reactflowUtils.ts
+++ b/airflow-core/src/airflow/ui/src/components/Graph/reactflowUtils.ts
@@ -71,12 +71,14 @@ export const flattenGraph = ({
const y = (parent?.position.y ?? 0) + (node.y ?? 0);
const newNode = {
data: { ...node, depth: level },
+ height: node.height,
id: node.id,
position: {
x,
y,
},
type: node.type,
+ width: node.width,
...parentNode,
} satisfies NodeType;