diff options
| author | pliablepixels <pliablepixels@gmail.com> | 2016-05-06 14:50:15 -0400 |
|---|---|---|
| committer | pliablepixels <pliablepixels@gmail.com> | 2016-05-06 14:50:15 -0400 |
| commit | a5f4780cf4aece0daa211275cd5a7c9acf6ef708 (patch) | |
| tree | fd4b867062ded3a96ecbd9f33c80fa469f45c09a /www/templates/events.html | |
| parent | a902f47149def68b7c7c4e9d65d8697970d4a643 (diff) | |
#241 - seems to be working for the most part
Former-commit-id: 975a7a737d99859ad75e643c93ec28e790935572
Diffstat (limited to 'www/templates/events.html')
| -rw-r--r-- | www/templates/events.html | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/www/templates/events.html b/www/templates/events.html index fc003db3..e85c4d03 100644 --- a/www/templates/events.html +++ b/www/templates/events.html @@ -277,7 +277,7 @@ <div class="list list-inset"> <div class="item item-divider">1 hour summary</div> - <div ng-repeat="hour in hours" id="hour-{{$index}}"> + <div ng-repeat="hour in hours|filter:{ monitor: '!'+'(Unknown)'}" id="hour-{{$index}}"> <span style="color:black"> <a class="item item-icon-right" href="" @@ -292,7 +292,7 @@ <div class="list list-inset"> <div class="item item-divider">1 day summary</div> - <div ng-repeat="day in days" id="day-{{$index}}"> + <div ng-repeat="day in days|filter:{ monitor: '!'+'(Unknown)'}" id="day-{{$index}}"> <span style="color:black"> <a class="item item-icon-right" href="" @@ -308,7 +308,7 @@ <div class="list list-inset"> <div class="item item-divider">1 week summary</div> - <div ng-repeat="week in weeks" id="week-{{$index}}"> + <div ng-repeat="week in weeks|filter:{ monitor: '!'+'(Unknown)'}" id="week-{{$index}}"> <span style="color:black"> <a class="item item-icon-right" href="" @@ -323,7 +323,7 @@ <div class="list list-inset"> <div class="item item-divider">1 month summary</div> - <div ng-repeat="month in months" id="month-{{$index}}"> + <div ng-repeat="month in months|filter:{ monitor: '!'+'(Unknown)'}" id="month-{{$index}}"> <span style="color:black"> <a class="item item-icon-right" href="" |
