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 8cf814b commit 91d5644Copy full SHA for 91d5644
packages/uui-base/lib/mixins/LabelMixin.ts
@@ -37,7 +37,8 @@ export const LabelMixin = <T extends Constructor<LitElement>>(
37
@property({ type: String })
38
public label!: string;
39
40
- firstUpdated() {
+ firstUpdated(_changedProperties: Map<string | number | symbol, unknown>) {
41
+ super.firstUpdated(_changedProperties);
42
if (!this.label) {
43
console.warn(this.tagName + ' needs a `label`', this);
44
}
0 commit comments