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 8668fe57527 Fix dags list not rendering (#57037)
8668fe57527 is described below
commit 8668fe575272ccec478c1a9b1afc829844772a73
Author: Pierre Jeambrun <[email protected]>
AuthorDate: Wed Oct 22 11:56:44 2025 +0200
Fix dags list not rendering (#57037)
---
airflow-core/src/airflow/ui/src/pages/DagsList/DagsList.tsx | 1 +
1 file changed, 1 insertion(+)
diff --git a/airflow-core/src/airflow/ui/src/pages/DagsList/DagsList.tsx
b/airflow-core/src/airflow/ui/src/pages/DagsList/DagsList.tsx
index ef3153876c3..f0ea76cf87c 100644
--- a/airflow-core/src/airflow/ui/src/pages/DagsList/DagsList.tsx
+++ b/airflow-core/src/airflow/ui/src/pages/DagsList/DagsList.tsx
@@ -164,6 +164,7 @@ const createColumns = (
header: "",
},
{
+ accessorKey: "favourite",
cell: ({ row: { original } }) => (
<FavoriteDagButton dagId={original.dag_id}
isFavorite={original.is_favorite} withText={false} />
),