move esp status to under status (not in settings)

This commit is contained in:
proddy
2024-05-05 17:16:31 +02:00
parent 24c7238a8b
commit 4a1319d95a
2 changed files with 2 additions and 5 deletions

View File

@@ -43,10 +43,7 @@ const AuthenticatedRouting: FC = () => {
<Route path="/settings/ntp/*" element={<NetworkTime />} /> <Route path="/settings/ntp/*" element={<NetworkTime />} />
<Route path="/settings/mqtt/*" element={<Mqtt />} /> <Route path="/settings/mqtt/*" element={<Mqtt />} />
<Route path="/settings/security/*" element={<Security />} /> <Route path="/settings/security/*" element={<Security />} />
<Route <Route path="/system/espsystemstatus/*" element={<ESPSystemStatus />} />
path="/settings/espsystemstatus/*"
element={<ESPSystemStatus />}
/>
<Route path="/settings/upload/*" element={<UploadDownload />} /> <Route path="/settings/upload/*" element={<UploadDownload />} />
</> </>
)} )}

View File

@@ -115,7 +115,7 @@ const ApplicationSettings: FC = () => {
}); });
}; };
useLayoutTitle(LL.APPLICATION_SETTINGS()); useLayoutTitle(LL.APPLICATION());
const content = () => { const content = () => {
if (!data) { if (!data) {