diff --git a/js/angular/directive/view.js b/js/angular/directive/view.js index 4c3deb7672d..f687c9749c6 100644 --- a/js/angular/directive/view.js +++ b/js/angular/directive/view.js @@ -54,6 +54,9 @@ IonicModule $attr.$observe('title', function(val, oldVal) { if (val !== initialTitle) { navBarCtrl.setTitle(val); + } else { + //Safety to make sure the navbar's title is correct + navBarCtrl.setTitle(initialTitle); } });