Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/panels/config/dashboard/ha-config-dashboard.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ class HaConfigDashboard extends LitElement {
@property() public hass!: HomeAssistant;
@property() public narrow!: boolean;
@property() public isWide!: boolean;
@property() public cloudStatus!: CloudStatus;
@property() public cloudStatus?: CloudStatus;
@property() public showAdvanced!: boolean;

protected render(): TemplateResult | void {
Expand All @@ -53,7 +53,7 @@ class HaConfigDashboard extends LitElement {
${this.hass.localize("ui.panel.config.introduction")}
</div>

${isComponentLoaded(this.hass, "cloud")
${this.cloudStatus && isComponentLoaded(this.hass, "cloud")
? html`
<ha-card>
<a href="/config/cloud" tabindex="-1">
Expand Down