Compare commits

..

1 Commits

Author SHA1 Message Date
Herculino Trotta ae115cca15 feat(tom-select): clear input after picking on a multi-item select 2026-06-12 23:32:17 -03:00
+4 -1
View File
@@ -60,12 +60,15 @@ window.TomSelect = function createDynamicTomSelect(element) {
]
});
},
onDropdownOpen: function () {
schedulePopperUpdate(this);
},
onItemAdd: function () {
if (this.settings.mode === 'multi') {
this.setTextboxValue();
this.refreshOptions(false);
}
schedulePopperUpdate(this);
},
onItemRemove: function () {