From 7ebaff322cac8d957c1b4619e42c0eb483fdb460 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joe=20K=C3=BCng?= Date: Thu, 12 Feb 2026 12:44:12 +0100 Subject: [PATCH] feat(web): improvements in routes for calculator --- frontend/src/app/app.routes.ts | 2 +- .../src/app/core/layout/navbar.component.html | 2 +- .../calculator/calculator-page.component.ts | 20 +++++++++++++++---- .../features/calculator/calculator.routes.ts | 4 +++- .../src/app/features/home/home.component.html | 4 ++-- 5 files changed, 23 insertions(+), 9 deletions(-) diff --git a/frontend/src/app/app.routes.ts b/frontend/src/app/app.routes.ts index 9d013b7..183f658 100644 --- a/frontend/src/app/app.routes.ts +++ b/frontend/src/app/app.routes.ts @@ -10,7 +10,7 @@ export const routes: Routes = [ loadComponent: () => import('./features/home/home.component').then(m => m.HomeComponent) }, { - path: 'cal', + path: 'calculator', loadChildren: () => import('./features/calculator/calculator.routes').then(m => m.CALCULATOR_ROUTES) }, { diff --git a/frontend/src/app/core/layout/navbar.component.html b/frontend/src/app/core/layout/navbar.component.html index 5c1fd28..189ff6f 100644 --- a/frontend/src/app/core/layout/navbar.component.html +++ b/frontend/src/app/core/layout/navbar.component.html @@ -10,7 +10,7 @@