Skip to content

Commit

Permalink
CC-23648 Fixed quantity on the Quick Order page (#2322)
Browse files Browse the repository at this point in the history
CC-23648 Fixed quantity on the Quick Order page
  • Loading branch information
andrew-maslov authored Dec 12, 2022
1 parent 620b221 commit f12cca1
Showing 1 changed file with 1 addition and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -61,12 +61,7 @@ export default class QuickOrderRow extends Component {
}

protected mapQuantityInputChange(): void {
this.quantityInput.addEventListener(
'input',
debounce(() => {
this.reloadField(this.autocompleteInput.inputValue);
}, this.autocompleteInput.debounceDelay),
);
this.quantityInput.addEventListener('change', () => this.reloadField(this.autocompleteInput.inputValue));
}

protected mapAdditionalFormElementChange(): void {
Expand Down

0 comments on commit f12cca1

Please sign in to comment.