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 cb4d007 commit f24e789Copy full SHA for f24e789
packages/textfield/src/Textfield.ts
@@ -53,7 +53,8 @@ export class TextfieldBase extends FieldLabelMixin(
53
)
54
) {
55
public static override get styles(): CSSResultArray {
56
- return [super.styles || [], textfieldStyles, checkmarkStyles];
+ const styles = (super.styles || []) as CSSResultArray;
57
+ return [...styles, textfieldStyles, checkmarkStyles];
58
}
59
60
@state()
0 commit comments