Skip to content

Commit

Permalink
feat: Code format
Browse files Browse the repository at this point in the history
  • Loading branch information
bhi10 committed Apr 9, 2024
1 parent 5311802 commit af47ff1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
command: |
export NPM_TOKEN=${SNAPSHOT_NPM_TOKEN}
npm config set ${NPM_PACKAGE_SCOPE}:registry ${NPM_SNAPSHOT_REPO}
yarn build || true
yarn build
npx semantic-release
release:
docker:
Expand Down
5 changes: 2 additions & 3 deletions src/mark-autocomplete.ts
Original file line number Diff line number Diff line change
Expand Up @@ -277,9 +277,7 @@ export class MarkAutocomplete<T = unknown> extends LitElement {
this.contentElement.value = this._getItemText(value);
this._emptyItems();

this.dispatchEvent(
new Event('change'),
);
this.dispatchEvent(new Event('change'));

this.close();
}
Expand Down Expand Up @@ -483,3 +481,4 @@ export class MarkAutocomplete<T = unknown> extends LitElement {
this._itemTextProvider = this.itemTextProvider;
}
}

0 comments on commit af47ff1

Please sign in to comment.