Commit c3a7104 1 parent 8218bf9 commit c3a7104 Copy full SHA for c3a7104
File tree 2 files changed +9
-5
lines changed
pages/pipeline-details/components/Overview/hooks
2 files changed +9
-5
lines changed Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ export const InfoColumns = ({ infoRows }: InfoColumnsProps) => {
31
31
< Typography
32
32
fontSize = { 13 }
33
33
color = "secondary.dark"
34
- sx = { { lineHeight : 1 , wordBreak : 'break-word' } }
34
+ sx = { { wordBreak : 'break-word' } }
35
35
>
36
36
{ text }
37
37
</ Typography >
Original file line number Diff line number Diff line change @@ -75,10 +75,7 @@ export const useInfoRows = (): InfoRow[] | null => {
75
75
</ Stack >
76
76
) ,
77
77
} ,
78
- {
79
- label : 'Tasks completed' ,
80
- text : statusObject . message ?. split ( 'Tasks Completed: ' ) [ 1 ] ,
81
- } ,
78
+
82
79
{
83
80
label : 'Started at' ,
84
81
text : statusObject . startedAt ,
@@ -92,6 +89,13 @@ export const useInfoRows = (): InfoRow[] | null => {
92
89
text : statusObject . updatedLast ,
93
90
} ,
94
91
] ,
92
+ [
93
+ {
94
+ label : 'Message' ,
95
+ text : statusObject . message ,
96
+ columnXs : 12 ,
97
+ } ,
98
+ ] ,
95
99
[
96
100
{
97
101
label : 'Labels' ,
You can’t perform that action at this time.
0 commit comments