This is an automated email from the ASF dual-hosted git repository.

choo121600 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 b42cb4215eb UI: Fix triggered Dag run layout in asset event cards 
(#69310)
b42cb4215eb is described below

commit b42cb4215ebe96d10fd7eb20b0f6f05740380d94
Author: Hojeong Park <[email protected]>
AuthorDate: Fri Jul 3 23:48:14 2026 +0900

    UI: Fix triggered Dag run layout in asset event cards (#69310)
    
    When a dag_id is long, the label text wraps, making the state badge stretch 
to the full row height.
---
 airflow-core/src/airflow/ui/src/components/Assets/TriggeredRuns.tsx | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/airflow-core/src/airflow/ui/src/components/Assets/TriggeredRuns.tsx 
b/airflow-core/src/airflow/ui/src/components/Assets/TriggeredRuns.tsx
index de061c49b39..fd8866359a1 100644
--- a/airflow-core/src/airflow/ui/src/components/Assets/TriggeredRuns.tsx
+++ b/airflow-core/src/airflow/ui/src/components/Assets/TriggeredRuns.tsx
@@ -37,7 +37,7 @@ export const TriggeredRuns = ({ dagRuns }: Props) => {
 
   return dagRuns.length === 1 ? (
     <Flex gap={1}>
-      <Text>{`${translate("triggered")} ${translate("dagRun_one")}`}: </Text>
+      <Text flexShrink={0}>{`${translate("triggered")} 
${translate("dagRun_one")}`}: </Text>
       <StateBadge state={dagRuns[0]?.state as DagRunState} />
       <RouterLink 
to={`/dags/${dagRuns[0]?.dag_id}/runs/${dagRuns[0]?.run_id}`}>
         {dagRuns[0]?.dag_id}

Reply via email to