Fix attributes broken by the warning fixes (#23182)

This commit is contained in:
Petar Petrov
2024-12-06 15:56:42 +02:00
committed by GitHub
parent 5fdefc0c20
commit 400ddbf625
61 changed files with 99 additions and 88 deletions

View File

@@ -27,11 +27,13 @@ export class HaLanguagePicker extends LitElement {
@property({ type: Boolean }) public required = false;
@property({ attribute: false, type: Boolean }) public nativeName = false;
@property({ attribute: "native-name", type: Boolean })
public nativeName = false;
@property({ attribute: false, type: Boolean }) public noSort = false;
@property({ attribute: "no-sort", type: Boolean }) public noSort = false;
@property({ attribute: false, type: Boolean }) public inlineArrow = false;
@property({ attribute: "inline-arrow", type: Boolean })
public inlineArrow = false;
@state() _defaultLanguages: string[] = [];