AMBARI-5418 BGO window filters should not persist the selected values. (Buzhor Denys via ababiichuk)
Project: http://git-wip-us.apache.org/repos/asf/ambari/repo Commit: http://git-wip-us.apache.org/repos/asf/ambari/commit/156b98e4 Tree: http://git-wip-us.apache.org/repos/asf/ambari/tree/156b98e4 Diff: http://git-wip-us.apache.org/repos/asf/ambari/diff/156b98e4 Branch: refs/heads/trunk Commit: 156b98e4cd4cc61e909407075650e315f25dfeb8 Parents: ec156a3 Author: aBabiichuk <[email protected]> Authored: Thu Apr 10 14:47:31 2014 +0300 Committer: aBabiichuk <[email protected]> Committed: Thu Apr 10 14:47:31 2014 +0300 ---------------------------------------------------------------------- ambari-web/app/utils/host_progress_popup.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ambari/blob/156b98e4/ambari-web/app/utils/host_progress_popup.js ---------------------------------------------------------------------- diff --git a/ambari-web/app/utils/host_progress_popup.js b/ambari-web/app/utils/host_progress_popup.js index a9eebf7..8d1cdbe 100644 --- a/ambari-web/app/utils/host_progress_popup.js +++ b/ambari-web/app/utils/host_progress_popup.js @@ -544,6 +544,7 @@ App.HostPopup = Em.Object.create({ * Preset values on init */ setOnStart: function () { + this.set('serviceCategory', this.get('categories').findProperty('value','all')); if (this.get("controller.isBackgroundOperations")) { this.get('controller').setSelectCount(this.get("services"), this.get('categories')); this.updateHostInfo(); @@ -936,4 +937,4 @@ App.HostPopup = Em.Object.create({ return self.get('isPopup'); } -}); \ No newline at end of file +});
