diff --git a/apps/client/src/app/components/header/header.module.ts b/apps/client/src/app/components/header/header.module.ts index 73d54a059..44b492e78 100644 --- a/apps/client/src/app/components/header/header.module.ts +++ b/apps/client/src/app/components/header/header.module.ts @@ -3,11 +3,11 @@ import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { MatButtonModule } from '@angular/material/button'; import { MatMenuModule } from '@angular/material/menu'; import { MatToolbarModule } from '@angular/material/toolbar'; +import { RouterModule } from '@angular/router'; import { LoginWithAccessTokenDialogModule } from '../../pages/login/login-with-access-token-dialog/login-with-access-token-dialog.module'; import { GfLogoModule } from '../logo/logo.module'; import { HeaderComponent } from './header.component'; -import { RouterModule } from '@angular/router'; @NgModule({ declarations: [HeaderComponent], @@ -19,7 +19,7 @@ import { RouterModule } from '@angular/router'; MatButtonModule, MatMenuModule, MatToolbarModule, - RouterModule, + RouterModule ], providers: [], schemas: [CUSTOM_ELEMENTS_SCHEMA] diff --git a/apps/client/src/app/components/no-transactions-info/no-transactions-info.component.html b/apps/client/src/app/components/no-transactions-info/no-transactions-info.component.html index 17ab58e47..bc0879dcf 100644 --- a/apps/client/src/app/components/no-transactions-info/no-transactions-info.component.html +++ b/apps/client/src/app/components/no-transactions-info/no-transactions-info.component.html @@ -1,7 +1,7 @@ diff --git a/apps/client/src/app/components/no-transactions-info/no-transactions-info.module.ts b/apps/client/src/app/components/no-transactions-info/no-transactions-info.module.ts index 318286a18..e6aa10deb 100644 --- a/apps/client/src/app/components/no-transactions-info/no-transactions-info.module.ts +++ b/apps/client/src/app/components/no-transactions-info/no-transactions-info.module.ts @@ -1,13 +1,14 @@ import { CommonModule } from '@angular/common'; import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { MatButtonModule } from '@angular/material/button'; +import { RouterModule } from '@angular/router'; import { NoTransactionsInfoComponent } from './no-transactions-info.component'; @NgModule({ declarations: [NoTransactionsInfoComponent], exports: [NoTransactionsInfoComponent], - imports: [CommonModule, MatButtonModule], + imports: [CommonModule, MatButtonModule, RouterModule], providers: [], schemas: [CUSTOM_ELEMENTS_SCHEMA] }) diff --git a/apps/client/src/app/pages/login/login-page.html b/apps/client/src/app/pages/login/login-page.html index 92f37ed48..81768ab19 100644 --- a/apps/client/src/app/pages/login/login-page.html +++ b/apps/client/src/app/pages/login/login-page.html @@ -105,7 +105,9 @@
- Learn more about Ghostfolio + Learn more about Ghostfolio
diff --git a/apps/client/src/app/pages/login/login-page.module.ts b/apps/client/src/app/pages/login/login-page.module.ts index 823f7ca91..5eb16eaaa 100644 --- a/apps/client/src/app/pages/login/login-page.module.ts +++ b/apps/client/src/app/pages/login/login-page.module.ts @@ -1,6 +1,7 @@ import { CommonModule } from '@angular/common'; import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { MatButtonModule } from '@angular/material/button'; +import { RouterModule } from '@angular/router'; import { GfLineChartModule } from '../../components/line-chart/line-chart.module'; import { GfLogoModule } from '../../components/logo/logo.module'; @@ -17,6 +18,7 @@ import { ShowAccessTokenDialogModule } from './show-access-token-dialog/show-acc GfLogoModule, LoginPageRoutingModule, MatButtonModule, + RouterModule, ShowAccessTokenDialogModule ], providers: [],