1
0
mirror of https://github.com/home-assistant/frontend.git synced 2025-12-20 02:38:53 +00:00

Change backup type order (#25759)

This commit is contained in:
Paul Bottein
2025-06-12 09:29:58 +02:00
committed by GitHub
parent 6d30d15638
commit 21af10fd28

View File

@@ -339,7 +339,7 @@ export const computeBackupSize = (backup: BackupContent) =>
export type BackupType = "automatic" | "manual" | "addon_update"; export type BackupType = "automatic" | "manual" | "addon_update";
const BACKUP_TYPE_ORDER: BackupType[] = ["automatic", "manual", "addon_update"]; const BACKUP_TYPE_ORDER: BackupType[] = ["automatic", "addon_update", "manual"];
export const getBackupTypes = memoize((isHassio: boolean) => export const getBackupTypes = memoize((isHassio: boolean) =>
isHassio isHassio