From 8ad64924779dbef9e5e087f39d56503c8f2f7873 Mon Sep 17 00:00:00 2001 From: Thomas Kaul <4159106+dtslvr@users.noreply.github.com> Date: Thu, 5 Oct 2023 20:31:00 +0200 Subject: [PATCH] Feature/various improvements in client (#2434) * Various improvements * Update changelog --- CHANGELOG.md | 4 ++++ apps/client/src/app/app.module.ts | 5 +++-- .../src/app/components/admin-overview/admin-overview.html | 4 ++-- .../src/app/components/header/header.component.html | 2 +- .../src/app/components/home-market/home-market.html | 4 ++-- .../portfolio-performance/portfolio-performance.module.ts | 5 +++-- .../position-detail-dialog/position-detail-dialog.html | 8 ++++---- .../import-activities-dialog.html | 2 +- apps/client/src/app/pages/public/public-page.html | 2 +- .../app/pages/user-account/user-account-page.module.ts | 5 +++-- 10 files changed, 24 insertions(+), 17 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 49419da3..41fa38bc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Added the application version to the endpoint `GET api/v1/admin` +### Fixed + +- Fixed the style of the active features page in the navigation on desktop + ## 2.8.0 - 2023-10-03 ### Added diff --git a/apps/client/src/app/app.module.ts b/apps/client/src/app/app.module.ts index a5f0d755..608ba010 100644 --- a/apps/client/src/app/app.module.ts +++ b/apps/client/src/app/app.module.ts @@ -1,6 +1,6 @@ import { Platform } from '@angular/cdk/platform'; import { HttpClientModule } from '@angular/common/http'; -import { NgModule } from '@angular/core'; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { MatAutocompleteModule } from '@angular/material/autocomplete'; import { MatChipsModule } from '@angular/material/chips'; import { @@ -35,6 +35,7 @@ export function NgxStripeFactory(): string { } @NgModule({ + bootstrap: [AppComponent], declarations: [AppComponent], imports: [ AppRoutingModule, @@ -72,6 +73,6 @@ export function NgxStripeFactory(): string { useFactory: NgxStripeFactory } ], - bootstrap: [AppComponent] + schemas: [CUSTOM_ELEMENTS_SCHEMA] }) export class AppModule {} diff --git a/apps/client/src/app/components/admin-overview/admin-overview.html b/apps/client/src/app/components/admin-overview/admin-overview.html index 2739547b..e54f8f27 100644 --- a/apps/client/src/app/components/admin-overview/admin-overview.html +++ b/apps/client/src/app/components/admin-overview/admin-overview.html @@ -11,8 +11,8 @@