Skip to content

Commit 12f0d3a

Browse files
committed
lit_widget.ts: Remove incorrect override.
> js/lit_widget.ts:27:14 - error TS4113: This member cannot have an 'override' modifier because it is not declared in the base class 'LitElement'. Fixes a mistake in aafc8ff
1 parent be1f2b9 commit 12f0d3a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

js/lit_widget.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ export abstract class LitWidget<
1313
keyof SubclassType | null
1414
>;
1515

16-
override onCustomMessage?(_msg: any): void {}
16+
onCustomMessage?(_msg: any): void {}
1717

1818
viewNameToModelName(): Map<keyof SubclassType | null, keyof ModelType> {
1919
return reverseMap(this.modelNameToViewName());

0 commit comments

Comments
 (0)