| Index: dashboard/dashboard/pinpoint/index/index.html
|
| diff --git a/dashboard/dashboard/pinpoint/index/index.html b/dashboard/dashboard/pinpoint/index/index.html
|
| index 1859b0165157172c7204aca1247cb0d65089ffe4..bd56549e51914a94ab60499942d5b7f77afcbf96 100644
|
| --- a/dashboard/dashboard/pinpoint/index/index.html
|
| +++ b/dashboard/dashboard/pinpoint/index/index.html
|
| @@ -55,16 +55,18 @@ found in the LICENSE file.
|
| let page = e.detail.item;
|
| // Need to call the the page.* functions async since this callback is
|
| // called sync while the route is being modified.
|
| - if ('deselected' in page)
|
| + if ('deselected' in page) {
|
| this.async(function() { page.deselected(); });
|
| + }
|
| },
|
|
|
| onSelectedPage: function(e) {
|
| let page = e.detail.item;
|
| // Need to call the the page.* functions async since this callback is
|
| // called sync while the route is being modified.
|
| - if ('selected' in page)
|
| + if ('selected' in page) {
|
| this.async(function() { page.selected(); });
|
| + }
|
| },
|
|
|
| ready: function() {
|
|
|