Parcourir la source

HUE-7321 [frontend] Close the global search results on show in assist

Johan Ahlen il y a 8 ans
Parent
commit
3b258ab1b9
1 fichiers modifiés avec 8 ajouts et 0 suppressions
  1. 8 0
      desktop/core/src/desktop/templates/ko_components.mako

+ 8 - 0
desktop/core/src/desktop/templates/ko_components.mako

@@ -686,6 +686,14 @@ from desktop.views import _ko
           }
         });
 
+        huePubSub.subscribe('context.popover.show.in.assist', function () {
+          window.setTimeout(function () {
+            if (self.searchResultVisible()) {
+              self.close();
+            }
+          }, 0);
+        });
+
         self.searchInput.subscribe(function (newValue) {
           if (self.inlineAutocomplete().indexOf(newValue) !== 0 || newValue === '') {
             self.inlineAutocomplete(newValue);