ng-switch for pullInfo.status
This commit is contained in:
parent
07b730c7ad
commit
352371431b
1 changed files with 7 additions and 10 deletions
|
@ -35,16 +35,13 @@
|
||||||
<div class="trigger-option-section" ng-show="currentView == 'analyzed'">
|
<div class="trigger-option-section" ng-show="currentView == 'analyzed'">
|
||||||
|
|
||||||
<!-- Messaging -->
|
<!-- Messaging -->
|
||||||
<!-- TODO(jschorr): eventually ng-switch on pullINfo.analysis.status -->
|
<div ng-switch on="pullInfo.analysis.status">
|
||||||
<div class="alert alert-danger" ng-if="pullInfo.analysis.status == 'error'">
|
<div ng-switch-when="error" class="alert alert-danger">{{ pullInfo.analysis.message }}</div>
|
||||||
{{ pullInfo.analysis.message }}
|
<div ng-switch-when="warning" class="alert alert-warning">{{ pullInfo.analysis.message }}</div>
|
||||||
</div>
|
<div ng-switch-when="notimplemented" class="alert alert-warning">
|
||||||
<div class="alert alert-warning" ng-if="pullInfo.analysis.status == 'warning'">
|
<p>For {{ TriggerService.getTitle(trigger.service) }} triggers, we are unable to determine dependencies automatically.</p>
|
||||||
{{ pullInfo.analysis.message }}
|
<p>If the git repository being built depends on a private base image, you must manually select a robot account with the proper permissions.</p>
|
||||||
</div>
|
</div>
|
||||||
<div class="alert alert-warning" ng-if="pullInfo.analysis.status == 'notimplemented'">
|
|
||||||
<p>For {{ TriggerService.getTitle(trigger.service) }} triggers, we are unable to determine dependencies automatically.</p>
|
|
||||||
<p>If the git repository being built depends on a private base image, you must manually select a robot account with the proper permissions.</p>
|
|
||||||
</div>
|
</div>
|
||||||
<div class="dockerfile-found" ng-if="pullInfo.analysis.is_public === false">
|
<div class="dockerfile-found" ng-if="pullInfo.analysis.is_public === false">
|
||||||
<div class="dockerfile-found-content">
|
<div class="dockerfile-found-content">
|
||||||
|
|
Reference in a new issue