Fix display of triggered builds if their trigger has been deleted
Before this change, if a build was triggered by a build trigger that was subsequently deleted, we'd display "Manually triggered" for the build in the UI, even though we have sufficient metadata to show *nearly the same* normal build information. After this change, if we have said trigger metadata, we still display as much as we can. Fixes https://jira.coreos.com/browse/QUAY-855
This commit is contained in:
parent
e5b86d4763
commit
99c986df6c
3 changed files with 14 additions and 17 deletions
|
@ -13,6 +13,6 @@
|
|||
</div>
|
||||
</div>
|
||||
|
||||
<div class="triggered-build-description" build="build" ng-if="build.trigger"></div>
|
||||
<div ng-if="!build.trigger">Manually Started Build</div>
|
||||
<div class="triggered-build-description" build="build" ng-if="build.trigger || build.trigger_metadata"></div>
|
||||
<div ng-if="!build.trigger && !build.trigger_metadata">Manually Started Build</div>
|
||||
</div>
|
||||
|
|
Reference in a new issue