Remove .html from routes

This commit is contained in:
Bill Thornton
2025-03-17 15:39:21 -04:00
parent ccc9f52aec
commit d6353f27b8
44 changed files with 178 additions and 178 deletions
+2 -2
View File
@@ -105,7 +105,7 @@ export function logout() {
// Reset cached views
viewContainer.reset();
webSettings.getMultiServer().then(multi => {
multi ? navigate('selectserver.html') : navigate('login.html');
multi ? navigate('selectserver') : navigate('login');
});
});
}
@@ -191,7 +191,7 @@ export function selectServer() {
if (window.NativeShell && typeof window.NativeShell.selectServer === 'function') {
window.NativeShell.selectServer();
} else {
navigate('selectserver.html');
navigate('selectserver');
}
}