diff --git a/dashboard/src/translation/en.json b/dashboard/src/translation/en.json index 0ef25089b..bf5ded81a 100644 --- a/dashboard/src/translation/en.json +++ b/dashboard/src/translation/en.json @@ -1766,6 +1766,12 @@ "title": "Redis Configuration", "enable": "Configure the app to use Redis", "disable": "Disable Redis" + }, + "infoTabTitle": "Info", + "info": { + "notes": { + "title": "Notes" + } } }, "login": { diff --git a/dashboard/src/views/app.html b/dashboard/src/views/app.html index bb8ca447f..f608cec6a 100644 --- a/dashboard/src/views/app.html +++ b/dashboard/src/views/app.html @@ -763,8 +763,7 @@
- -

+

diff --git a/dashboard/src/views/app.js b/dashboard/src/views/app.js index ea78f50fb..e6c486e4f 100644 --- a/dashboard/src/views/app.js +++ b/dashboard/src/views/app.js @@ -162,6 +162,8 @@ angular.module('Application').controller('AppController', ['$scope', '$location' $scope.info.notes.busy = false; $scope.info.notes.editing = false; + + $scope.refreshApp($scope.app.id); }); } },