File tree Expand file tree Collapse file tree 1 file changed +10
-4
lines changed
airflow-core/src/airflow/ui/src/components/Assets Expand file tree Collapse file tree 1 file changed +10
-4
lines changed Original file line number Diff line number Diff line change @@ -51,7 +51,9 @@ export const AssetEvent = ({
51
51
</ Text >
52
52
{ Boolean ( assetId ) ? undefined : (
53
53
< HStack >
54
- < FiDatabase />
54
+ < Box >
55
+ < FiDatabase />
56
+ </ Box >
55
57
< Tooltip
56
58
content = {
57
59
< div >
@@ -62,18 +64,22 @@ export const AssetEvent = ({
62
64
showArrow
63
65
>
64
66
< Link to = { `/assets/${ event . asset_id } ` } >
65
- < Text color = "fg.info" > { event . name ?? "" } </ Text >
67
+ < Box color = "fg.info" overflowWrap = "anywhere" padding = { 0 } wordWrap = "break-word" >
68
+ { event . name ?? "" }
69
+ </ Box >
66
70
</ Link >
67
71
</ Tooltip >
68
72
</ HStack >
69
73
) }
70
74
< HStack >
71
- < Text > Source: </ Text >
75
+ < Box > Source: </ Box >
72
76
{ source === "" ? (
73
77
< Link
74
78
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 } ` : "" } ` }
75
79
>
76
- < Text color = "fg.info" > { event . source_dag_id } </ Text >
80
+ < Box color = "fg.info" overflowWrap = "anywhere" padding = { 0 } wordWrap = "break-word" >
81
+ { event . source_dag_id }
82
+ </ Box >
77
83
</ Link >
78
84
) : (
79
85
source
You can’t perform that action at this time.
0 commit comments