diff --git a/src/pages/ConfigPage.tsx b/src/pages/ConfigPage.tsx index 0d99c9a..77e3a00 100644 --- a/src/pages/ConfigPage.tsx +++ b/src/pages/ConfigPage.tsx @@ -281,6 +281,8 @@ export function ConfigPage() { return t('config_management.status_loaded'); }; + const isLoadedStatus = !disableControls && !loading && !error && !saving && !isDirty; + const getStatusClass = () => { if (error) return styles.error; if (isDirty) return styles.modified; @@ -444,9 +446,11 @@ export function ConfigPage() { {/* Controls */}
- - {getStatusText()} - + {!isLoadedStatus && ( + + {getStatusText()} + + )}