This is an automated email from the ASF dual-hosted git repository.
atkach pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/ambari.git
The following commit(s) were added to refs/heads/trunk by this push:
new c4b06db AMBARI-24200 Unable to filter on the alerts in dashboard page
c4b06db is described below
commit c4b06db1a4c1dbfe5283038867da1f1239820a39
Author: Andrii Tkach <[email protected]>
AuthorDate: Wed Jun 27 15:15:28 2018 +0300
AMBARI-24200 Unable to filter on the alerts in dashboard page
---
ambari-web/app/views/main/alerts/alert_instances_popup_view.js | 4 +---
1 file changed, 1 insertion(+), 3 deletions(-)
diff --git a/ambari-web/app/views/main/alerts/alert_instances_popup_view.js
b/ambari-web/app/views/main/alerts/alert_instances_popup_view.js
index 6524f30..0c0f417 100644
--- a/ambari-web/app/views/main/alerts/alert_instances_popup_view.js
+++ b/ambari-web/app/views/main/alerts/alert_instances_popup_view.js
@@ -62,9 +62,7 @@ App.AlertInstancesPopupView =
App.TableView.extend(App.TableServerViewMixin, {
this.filter();
this.addObserver('filteringComplete', this, this.overlayObserver);
this.overlayObserver();
- $(".notifications-body .filter-select ").click(function(event){
- event.stopPropagation();
- });
+ this.$(".filter-select ").click((event) => event.stopPropagation());
return this._super();
},