CSR-612 Fix list-button for JAWS

This commit is contained in:
Katie 2022-07-13 08:55:35 -04:00
parent bd496c466d
commit 3656c62cf6

View file

@ -106,18 +106,19 @@ export default {
this.isLoaderDisplayed = true;
},
handleInputChange() {
if(!this.selectingInitiatesLoad) {
this.handleCheckChange();
}
if(this.selectingInitiatesLoad) {
this.triggerButton();
}
else {
this.handleCheckChange();
}
},
handleKeyupArrow() {
if (this.isMultiSelect) {
return; // Prevent arrow keys from doing anything if element is a checkbox
}
if(!this.selectingInitiatesLoad) {
this.handleCheckChange();
}
this.handleInputChange();
},
triggerButton() {
if(this.selectingInitiatesLoad) {