We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7acf398 commit 1dfc3daCopy full SHA for 1dfc3da
Modules30Changes.md
@@ -142,8 +142,8 @@ export class MyTextViewCommon extends View {
142
}
143
144
// Define textProperty and register it
145
-export const textProperty = new Property<TextBaseCommon, string>({ name: "text", defaultValue: "" });
146
-textProperty.register(TextBaseCommon);
+export const textProperty = new Property<MyTextViewCommon, string>({ name: "text", defaultValue: "" });
+textProperty.register(MyTextViewCommon);
147
148
// Define and register the "text-align" CSS property
149
export type TextAlignment = "left" | "center" | "right";
0 commit comments