fix liquid monitoring url routes

This commit is contained in:
Mononaut 2024-12-10 22:19:57 +00:00
parent e58579ed8a
commit 58b4c07924
No known key found for this signature in database
GPG Key ID: A3F058E41374C04E

View File

@ -142,12 +142,12 @@ const routes: Routes = [
if (window['__env']?.OFFICIAL_MEMPOOL_SPACE) { if (window['__env']?.OFFICIAL_MEMPOOL_SPACE) {
routes[0].children.push({ routes[0].children.push({
path: 'nodes', path: 'monitoring',
data: { networks: ['bitcoin', 'liquid'] }, data: { networks: ['bitcoin', 'liquid'] },
component: ServerHealthComponent component: ServerHealthComponent
}); });
routes[0].children.push({ routes[0].children.push({
path: 'network', path: 'nodes',
data: { networks: ['bitcoin', 'liquid'] }, data: { networks: ['bitcoin', 'liquid'] },
component: ServerStatusComponent component: ServerStatusComponent
}); });