Skip to content

Commit

Permalink
fix(checkbox): add override to symbol properties
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 669068389
  • Loading branch information
material-web-copybara authored and copybara-github committed Aug 29, 2024
1 parent 990d065 commit a9ee4f5
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 a9ee4f5

Please sign in to comment.