Skip to content

Commit

Permalink
Add override to symbol properties where needed in preparation for Typ…
Browse files Browse the repository at this point in the history
…eScript 5.6.

PiperOrigin-RevId: 669049737
  • Loading branch information
material-web-copybara authored and copybara-github committed Aug 29, 2024
1 parent 990d065 commit ae637c3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions checkbox/internal/checkbox.ts
Original file line number Diff line number Diff line change
Expand Up @@ -204,11 +204,11 @@ export class Checkbox extends checkboxBaseClass {
this.checked = state === 'true';
}

[createValidator]() {
override [createValidator]() {
return new CheckboxValidator(() => this);
}

[getValidityAnchor]() {
override [getValidityAnchor]() {
return this.input;
}
}

0 comments on commit ae637c3

Please sign in to comment.