From 67c3a652b7b1df95332ec822e9f4a97463f13bc7 Mon Sep 17 00:00:00 2001 From: proddy Date: Fri, 30 Aug 2024 11:10:06 +0200 Subject: [PATCH] move has_partition and has_loader to hardware status --- interface/src/types/system.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/interface/src/types/system.ts b/interface/src/types/system.ts index 62b425677..9cc75ae8b 100644 --- a/interface/src/types/system.ts +++ b/interface/src/types/system.ts @@ -27,6 +27,8 @@ export interface HardwareStatus { free_psram?: number; free_caps: number; model: string; + has_loader: boolean; + has_partition: boolean; } export interface SystemStatus { @@ -43,8 +45,6 @@ export interface SystemStatus { ap_status: boolean; network_status: NetworkConnectionStatus; wifi_rssi: number; - has_loader: boolean; - has_partition: boolean; } export enum LogLevel {