mirror of
https://github.com/home-assistant/frontend.git
synced 2025-12-24 20:55:49 +00:00
Fix incompatible object/array property types (2 of 3) (#19482)
This commit is contained in:
@@ -31,11 +31,11 @@ import "./hc-layout";
|
||||
|
||||
@customElement("hc-cast")
|
||||
class HcCast extends LitElement {
|
||||
@property() public auth!: Auth;
|
||||
@property({ attribute: false }) public auth!: Auth;
|
||||
|
||||
@property() public connection!: Connection;
|
||||
@property({ attribute: false }) public connection!: Connection;
|
||||
|
||||
@property() public castManager!: CastManager;
|
||||
@property({ attribute: false }) public castManager!: CastManager;
|
||||
|
||||
@state() private askWrite = false;
|
||||
|
||||
|
||||
@@ -10,13 +10,13 @@ import "../../../../src/components/ha-card";
|
||||
|
||||
@customElement("hc-layout")
|
||||
class HcLayout extends LitElement {
|
||||
@property() public subtitle?: string | undefined;
|
||||
@property() public subtitle?: string;
|
||||
|
||||
@property() public auth?: Auth;
|
||||
@property({ attribute: false }) public auth?: Auth;
|
||||
|
||||
@property() public connection?: Connection;
|
||||
@property({ attribute: false }) public connection?: Connection;
|
||||
|
||||
@property() public user?: HassUser;
|
||||
@property({ attribute: false }) public user?: HassUser;
|
||||
|
||||
protected render(): TemplateResult {
|
||||
return html`
|
||||
|
||||
Reference in New Issue
Block a user