Skip to content

Commit a9ee4f5

Browse files
fix(checkbox): add override to symbol properties
PiperOrigin-RevId: 669068389
1 parent 990d065 commit a9ee4f5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

checkbox/internal/checkbox.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -204,11 +204,11 @@ export class Checkbox extends checkboxBaseClass {
204204
this.checked = state === 'true';
205205
}
206206

207-
[createValidator]() {
207+
override [createValidator]() {
208208
return new CheckboxValidator(() => this);
209209
}
210210

211-
[getValidityAnchor]() {
211+
override [getValidityAnchor]() {
212212
return this.input;
213213
}
214214
}

0 commit comments

Comments
 (0)