Skip to content

Commit

Permalink
Merge branch 'master' into daniellacosse/dedupe_lit
Browse files Browse the repository at this point in the history
  • Loading branch information
daniellacosse authored Jan 22, 2025
2 parents 2adf9a5 + a8d9f8f commit b455e27
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
name: Lint

concurrency:
group: ${{ github.head_ref || github.ref }}
group: ${{ github.head_ref || github.ref }}-lint
cancel-in-progress: true

on:
Expand Down
6 changes: 2 additions & 4 deletions client/src/www/views/root_view/add_access_key_dialog/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -93,10 +93,6 @@ export class AddAccessKeyDialog extends LitElement {
<section>
<md-filled-text-field
.error=${this.accessKey && !this.isValidAccessKey}
@change=${this.updateIsValidAccessKey(
this.accessKey,
this.validateAccessKey
)}
@input=${this.handleEdit}
error-text="${this.localize('add-access-key-dialog-error-text')}"
label="${this.localize('add-access-key-dialog-label')}"
Expand Down Expand Up @@ -131,6 +127,8 @@ export class AddAccessKeyDialog extends LitElement {

private handleEdit(event: InputEvent) {
this.accessKey = (event.target as HTMLInputElement).value;

this.updateIsValidAccessKey(this.accessKey, this.validateAccessKey);
}

private handleConfirm() {
Expand Down

0 comments on commit b455e27

Please sign in to comment.