Skip to content

Commit

Permalink
Merge branch 'master' into akerr/expand-collapse/dev
Browse files Browse the repository at this point in the history
  • Loading branch information
AllanKerr authored May 15, 2020
2 parents 00ae590 + cf22c10 commit 0a76373
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions components/list/list-item-checkbox-mixin.js
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,8 @@ export const ListItemCheckboxMixin = superclass => class extends superclass {
event.preventDefault();
if (this.disabled) return;
this.setSelected(!this.selected);
const checkbox = this.shadowRoot.querySelector(`#${this._checkboxId}`);
if (checkbox) checkbox.focus();
}

_handleCheckboxChange(event) {
Expand Down

0 comments on commit 0a76373

Please sign in to comment.