Skip to content

Commit

Permalink
prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
KonnorRogers committed Nov 4, 2024
1 parent bcfbe2b commit 52cde6d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/select/select.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -464,7 +464,7 @@ export default class SlSelect extends ShoelaceElement implements ShoelaceFormCon
private handleClearClick(event: MouseEvent) {
event.stopPropagation();

this.valueHasChanged = true
this.valueHasChanged = true;

if (this.value !== '') {
this.setSelectedOptions([]);
Expand Down Expand Up @@ -537,7 +537,7 @@ export default class SlSelect extends ShoelaceElement implements ShoelaceFormCon
private handleTagRemove(event: SlRemoveEvent, option: SlOption) {
event.stopPropagation();

this.valueHasChanged = true
this.valueHasChanged = true;

if (!this.disabled) {
this.toggleOptionSelection(option, false);
Expand Down

0 comments on commit 52cde6d

Please sign in to comment.