Skip to content

Commit

Permalink
#157 Fix a typo to display the list of invalid responders
Browse files Browse the repository at this point in the history
  • Loading branch information
nadouani committed Dec 17, 2018
1 parent d65f379 commit 5bf6d08
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
<section>

<div class="mb-s" ng-if="$ctrl.invalidReponders.length > 0">
<div class="mb-s" ng-if="$ctrl.invalidResponders.length > 0">
<div class="callout callout-warning">
<h4>You have {{$ctrl.invalidReponders.length}} invalid
<ng-pluralize count="$ctrl.invalidReponders.length" when="{'1': 'responder', 'other': 'responders'}"></ng-pluralize>
<h4>You have {{$ctrl.invalidResponders.length}} invalid
<ng-pluralize count="$ctrl.invalidResponders.length" when="{'1': 'responder', 'other': 'responders'}"></ng-pluralize>
</h4>
<p>Invalid responders have no definition and cannot be run on any observable. You have to remove them.</p>
</div>
<div class="row">
<div class="col-sm-12 flex-table">
<div class="flex-row media" ng-repeat="r in $ctrl.invalidReponders">
<div class="flex-row media" ng-repeat="r in $ctrl.invalidResponders">
<div class="flex-col flex-1">
<h4 class="media-heading">
<span class="mr-m text-primary">{{r.name}}</span>
Expand Down

0 comments on commit 5bf6d08

Please sign in to comment.