Fix incompatible object/array property types (1 of 3) (#19450)

This commit is contained in:
Steve Repsher
2024-01-19 15:16:15 -05:00
committed by GitHub
parent 45398f84cb
commit dcb3accdb8
45 changed files with 62 additions and 62 deletions

View File

@@ -31,11 +31,11 @@ export class HaFileUpload extends LitElement {
@property() public supports?: string;
@property() public value?: File | File[] | FileList | string;
@property({ type: Object }) public value?: File | File[] | FileList | string;
@property({ type: Boolean }) public multiple = false;
@property({ type: Boolean, reflect: true }) public disabled: boolean = false;
@property({ type: Boolean, reflect: true }) public disabled = false;
@property({ type: Boolean }) public uploading = false;