This is an automated email from the ASF dual-hosted git repository. kaxilnaik pushed a commit to branch v3-1-test in repository https://gitbox.apache.org/repos/asf/airflow.git
commit c7d8d721dd9253f373985711de11bf58454b94dd Author: Steve Ahn <[email protected]> AuthorDate: Mon Sep 22 10:53:41 2025 -0700 Fix asset name text overflow in DAGs list view (#55914) * refmt asset name with fixedWidth hidden & ellipsis * Update airflow-core/src/airflow/ui/src/pages/DagsList/AssetSchedule.tsx Co-authored-by: Guan Ming(Wesley) Chiu <[email protected]> * lintg --------- Co-authored-by: Guan Ming(Wesley) Chiu <[email protected]> (cherry picked from commit 5c86bf52d236b6ddfcaafd30671a495db9826650) --- airflow-core/src/airflow/ui/src/pages/DagsList/AssetSchedule.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/airflow-core/src/airflow/ui/src/pages/DagsList/AssetSchedule.tsx b/airflow-core/src/airflow/ui/src/pages/DagsList/AssetSchedule.tsx index 7d74ec1cde8..26b963da26b 100644 --- a/airflow-core/src/airflow/ui/src/pages/DagsList/AssetSchedule.tsx +++ b/airflow-core/src/airflow/ui/src/pages/DagsList/AssetSchedule.tsx @@ -63,7 +63,7 @@ export const AssetSchedule = ({ assetExpression, dagId, latestRunAfter, timetabl return ( <HStack> <FiDatabase style={{ display: "inline" }} /> - <Link asChild color="fg.info" display="block" fontSize="sm"> + <Link asChild color="fg.info" display="block" fontSize="sm" maxWidth="200px" truncate> <RouterLink to={`/assets/${asset.id}`}>{asset.name ?? asset.uri}</RouterLink> </Link> </HStack>
