diff options
| author | Pliable Pixels <pliablepixels@gmail.com> | 2020-01-10 10:31:12 +0530 |
|---|---|---|
| committer | Pliable Pixels <pliablepixels@gmail.com> | 2020-01-10 10:31:12 +0530 |
| commit | aca906d483d8d0e8a50b1c70b665f925d8c3bba7 (patch) | |
| tree | 5bee8fa3805f35f1c4e0c08c8900d0dc3b06adf2 | |
| parent | 56a573ea66ceee459a01e5b77563580fc405fc71 (diff) | |
#882 one way binding for overlays - does it matter?
| -rw-r--r-- | www/templates/moment.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/www/templates/moment.html b/www/templates/moment.html index 9c4c13be..47892264 100644 --- a/www/templates/moment.html +++ b/www/templates/moment.html @@ -98,7 +98,7 @@ <figure class="grid-item grid-item-{{gridSize}}" ng-repeat="moment in moments | onlyEnabledMoments"> - <figcaption ng-if="showIcons" class="normal-figheader"> {{moment.Event.monitorName}} + <figcaption ng-if="showIcons" class="normal-figheader"> {{::moment.Event.monitorName}} <span style="float:right"> <button class="button button-small button-icon icon {{moment.Event.icon}}" ng-click="toggleCollapse(moment.Event.MonitorId, moment.Event.Id)"></button>{{moment.Event.collapseCount}} </span> </figcaption> @@ -111,7 +111,7 @@ </div> - <figcaption ng-if="showIcons" class="normal-figcaption"> {{moment.Event.humanizeTime}} + <figcaption ng-if="showIcons" class="normal-figcaption"> {{::moment.Event.humanizeTime}} <span style="float:right">{{hourmin(moment.Event.StartTime)}} </span> </figcaption> </figure> |
