Disable backup by default for update more info (#23307)

This commit is contained in:
Paul Bottein 2024-12-16 12:24:09 +01:00 committed by GitHub
parent efcd57934a
commit ec324ab09f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -146,7 +146,6 @@ class MoreInfoUpdate extends LitElement {
</span>
<ha-switch
id="create-backup"
checked
.disabled=${updateIsInstalling(this.stateObj)}
></ha-switch>
</ha-settings-row>
@ -234,7 +233,7 @@ class MoreInfoUpdate extends LitElement {
if (createBackupSwitch) {
return createBackupSwitch.checked;
}
return true;
return false;
}
private _handleInstall(): void {