Loading src/app/FilteringSelect.js +6 −3 Original line number Diff line number Diff line Loading @@ -292,9 +292,12 @@ define([ _selectResult: function() { if (this.focusIn !== -1) { if (this.focusIn.getAttribute('data-redmic-id')) { var itemId = this.focusIn.getAttribute('data-redmic-id'), itemValue = isNaN(itemId) ? itemId : parseInt(itemId, 10); if (itemId) { this._activeRemoveText(); this.set("value", parseInt(this.focusIn.getAttribute('data-redmic-id'), 10)); this.set("value", itemValue); this.label = cleanSpace(this._labelFocus); this._setValueInput(this._labelFocus); this.validate(); Loading Loading
src/app/FilteringSelect.js +6 −3 Original line number Diff line number Diff line Loading @@ -292,9 +292,12 @@ define([ _selectResult: function() { if (this.focusIn !== -1) { if (this.focusIn.getAttribute('data-redmic-id')) { var itemId = this.focusIn.getAttribute('data-redmic-id'), itemValue = isNaN(itemId) ? itemId : parseInt(itemId, 10); if (itemId) { this._activeRemoveText(); this.set("value", parseInt(this.focusIn.getAttribute('data-redmic-id'), 10)); this.set("value", itemValue); this.label = cleanSpace(this._labelFocus); this._setValueInput(this._labelFocus); this.validate(); Loading