Skip to content

Commit 5c86bf5

Browse files
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]>
1 parent 166a937 commit 5c86bf5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

airflow-core/src/airflow/ui/src/pages/DagsList/AssetSchedule.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ export const AssetSchedule = ({ assetExpression, dagId, latestRunAfter, timetabl
6363
return (
6464
<HStack>
6565
<FiDatabase style={{ display: "inline" }} />
66-
<Link asChild color="fg.info" display="block" fontSize="sm">
66+
<Link asChild color="fg.info" display="block" fontSize="sm" maxWidth="200px" truncate>
6767
<RouterLink to={`/assets/${asset.id}`}>{asset.name ?? asset.uri}</RouterLink>
6868
</Link>
6969
</HStack>

0 commit comments

Comments
 (0)