display branchtag regex when manually invoking build triggers to avoid confusion when multiple triggers
This commit is contained in:
parent
21ecc2eadd
commit
2814df482b
10 changed files with 70 additions and 37 deletions
|
@ -1,7 +1,7 @@
|
|||
<div class="dockerfile-build-dialog-element">
|
||||
<!-- Modal message dialog -->
|
||||
<div class="modal fade dockerfilebuildModal">
|
||||
<div class="co-dialog modal-dialog">
|
||||
<div class="co-dialog modal-dialog modal-lg">
|
||||
<div class="modal-content" ng-show="triggersResource && triggersResource.loading">
|
||||
<div class="cor-loader"></div>
|
||||
</div>
|
||||
|
@ -38,12 +38,14 @@
|
|||
<thead>
|
||||
<tr>
|
||||
<td>Trigger Description</td>
|
||||
<td>Branches/Tags</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr ng-repeat="trigger in triggers">
|
||||
<td><span class="trigger-description" trigger="trigger"></span></td>
|
||||
<td><trigger-description trigger="trigger"></trigger-description></td>
|
||||
<td>{{ trigger.config.branchtag_regex || 'All' }}</td>
|
||||
<td>
|
||||
<a href="javascript:void(0)" ng-click="runTriggerNow(trigger)"
|
||||
ng-if="trigger.can_invoke">Run Trigger Now</a>
|
||||
|
|
Reference in a new issue