Explorar el Código

fix: restored previous behavior of form_dropdown, this fixes all my observerd bugs with the dropdown behavior

Torkel Ödegaard hace 8 años
padre
commit
38f4d5d06d
Se han modificado 1 ficheros con 2 adiciones y 4 borrados
  1. 2 4
      public/app/core/components/form_dropdown/form_dropdown.ts

+ 2 - 4
public/app/core/components/form_dropdown/form_dropdown.ts

@@ -176,7 +176,7 @@ export class FormDropdownCtrl {
   updateValue(text) {
   updateValue(text) {
     text = _.unescape(text);
     text = _.unescape(text);
 
 
-    if ((!this.allowCustom && text === '') || this.text === text) {
+    if (text === '' || this.text === text) {
       return;
       return;
     }
     }
 
 
@@ -225,9 +225,7 @@ export class FormDropdownCtrl {
 
 
     var typeahead = this.inputElement.data('typeahead');
     var typeahead = this.inputElement.data('typeahead');
     if (typeahead) {
     if (typeahead) {
-      if (!this.allowCustom) {
-        this.inputElement.val('');
-      }
+      this.inputElement.val('');
       typeahead.lookup();
       typeahead.lookup();
     }
     }
   }
   }