Skip to content

Commit

Permalink
#463 Fix a typo
Browse files Browse the repository at this point in the history
  • Loading branch information
nadouani committed Feb 5, 2018
1 parent 0a63be9 commit 07a4433
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ui/app/views/directives/flow/alert.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<ng-pluralize count="summary.alert.Creation" when="{'one': '{} new alert has been added', 'other': '{} new alerts have been added'}"></ng-pluralize>
</div>
<div class="flow-item-bulk" ng-show="summary.alert.Update">
<ng-pluralize count="summary.alert.Update" when="{'one': '{} existing alert has been updated', 'other': '{} existing alerts have been added'}"></ng-pluralize>
<ng-pluralize count="summary.alert.Update" when="{'one': '{} existing alert has been updated', 'other': '{} existing alerts have been updated'}"></ng-pluralize>
</div>
<div>
<a class="small" href ng-click="openState('app.alert-list')">See all</a>
Expand All @@ -19,7 +19,7 @@

<div class="flow-item-updates wrap" ng-hide="bulk" ng-switch-default>
<span ng-repeat="(k,v) in base.details"
ng-switch="k"
ng-switch="k"
ng-if="['description', 'caseTemplate', 'title', 'follow', 'lastSyncDate'].indexOf(k) === -1">
<div ng-switch-when="artifacts">
{{k}}:
Expand Down

0 comments on commit 07a4433

Please sign in to comment.