Sfoglia il codice sorgente

HUE-7560 [assist] Fix filtering of fields in the right assist collection panel

Enrico Berti 8 anni fa
parent
commit
e32d3b5
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. 1 1
      desktop/core/src/desktop/templates/assist.mako

+ 1 - 1
desktop/core/src/desktop/templates/assist.mako

@@ -2823,7 +2823,7 @@ from desktop.views import _ko
             return self.activeCollection().entries();
           }
           var result = self.activeCollection().entries().filter(function (field) {
-            if (field.name().toLowerCase().indexOf(self.filter.querySpec().query.toLowerCase()) > -1) {
+            if (field.columnName.toLowerCase().indexOf(self.filter.querySpec().query.toLowerCase()) > -1) {
               return true;
             }
             return false;