File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -179,7 +179,11 @@ const Artifacts = ({
179
179
</ div >
180
180
)
181
181
}
182
- if ( status . toLowerCase ( ) === TERMINAL_STATUS_MAP . FAILED || status . toLowerCase ( ) === TERMINAL_STATUS_MAP . CANCELLED ) {
182
+ if (
183
+ status . toLowerCase ( ) === TERMINAL_STATUS_MAP . FAILED ||
184
+ status . toLowerCase ( ) === TERMINAL_STATUS_MAP . CANCELLED ||
185
+ status . toLowerCase ( ) === TERMINAL_STATUS_MAP . ERROR
186
+ ) {
183
187
if ( isJobCI ) {
184
188
return (
185
189
< GenericEmptyState
Original file line number Diff line number Diff line change @@ -59,7 +59,7 @@ const MaterialHistory = ({
59
59
const historyList = materialHistoryMapWithTime [ date ]
60
60
return (
61
61
< >
62
- { ! isCommitInfoModal && (
62
+ { ! isCommitInfoModal && material . type !== SourceTypeMap . WEBHOOK && (
63
63
< div className = "flex left dc__gap-8" >
64
64
< span className = "fs-12 lh-18 cn-7 fw-6 w-130" > { date } </ span >
65
65
< div className = "h-1 bcn-2 w-100" />
You can’t perform that action at this time.
0 commit comments