This is an automated email from the ASF dual-hosted git repository. kaxilnaik pushed a commit to branch v3-0-test in repository https://gitbox.apache.org/repos/asf/airflow.git
commit 554e15921bac3a6e33e996eef425c4918a091089 Author: Zhen-Lun (Kevin) Hong <[email protected]> AuthorDate: Sun May 4 19:42:39 2025 +0800 fix: wrap overflowing texts of asset events (#50173) (cherry picked from commit 0258f0a36610b124137b92f803e8d59fe4182f88) --- .../src/airflow/ui/src/components/Assets/AssetEvent.tsx | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/airflow-core/src/airflow/ui/src/components/Assets/AssetEvent.tsx b/airflow-core/src/airflow/ui/src/components/Assets/AssetEvent.tsx index 1cb0817964e..6d69ae9a1ac 100644 --- a/airflow-core/src/airflow/ui/src/components/Assets/AssetEvent.tsx +++ b/airflow-core/src/airflow/ui/src/components/Assets/AssetEvent.tsx @@ -51,7 +51,9 @@ export const AssetEvent = ({ </Text> {Boolean(assetId) ? undefined : ( <HStack> - <FiDatabase /> + <Box> + <FiDatabase /> + </Box> <Tooltip content={ <div> @@ -62,18 +64,22 @@ export const AssetEvent = ({ showArrow > <Link to={`/assets/${event.asset_id}`}> - <Text color="fg.info"> {event.name ?? ""} </Text> + <Box color="fg.info" overflowWrap="anywhere" padding={0} wordWrap="break-word"> + {event.name ?? ""} + </Box> </Link> </Tooltip> </HStack> )} <HStack> - <Text>Source: </Text> + <Box>Source: </Box> {source === "" ? ( <Link to={`/dags/${event.source_dag_id}/runs/${event.source_run_id}/tasks/${event.source_task_id}${event.source_map_index > -1 ? `/mapped/${event.source_map_index}` : ""}`} > - <Text color="fg.info"> {event.source_dag_id} </Text> + <Box color="fg.info" overflowWrap="anywhere" padding={0} wordWrap="break-word"> + {event.source_dag_id} + </Box> </Link> ) : ( source
