From c15d4a6ad593ccc944179664e90b0ecbdf868072 Mon Sep 17 00:00:00 2001
From: Thomas <4159106+dtslvr@users.noreply.github.com>
Date: Fri, 20 Oct 2023 22:50:08 +0200
Subject: [PATCH] Remove version
---
apps/client/src/app/app.component.html | 1 -
apps/client/src/app/app.component.ts | 2 --
.../app/components/admin-overview/admin-overview.component.ts | 1 -
.../app/pages/about/overview/about-overview-page.component.ts | 2 --
.../src/app/pages/about/overview/about-overview-page.html | 3 ---
apps/client/src/environments/environment.prod.ts | 3 +--
apps/client/src/environments/environment.ts | 3 +--
7 files changed, 2 insertions(+), 13 deletions(-)
diff --git a/apps/client/src/app/app.component.html b/apps/client/src/app/app.component.html
index a52261969..e792598a7 100644
--- a/apps/client/src/app/app.component.html
+++ b/apps/client/src/app/app.component.html
@@ -165,7 +165,6 @@
© 2021 - {{ currentYear }}
Ghostfolio
- {{ version }}
diff --git a/apps/client/src/app/app.component.ts b/apps/client/src/app/app.component.ts
index d1d9529ce..2317279b1 100644
--- a/apps/client/src/app/app.component.ts
+++ b/apps/client/src/app/app.component.ts
@@ -17,7 +17,6 @@ import { DeviceDetectorService } from 'ngx-device-detector';
import { Subject } from 'rxjs';
import { filter, takeUntil } from 'rxjs/operators';
-import { environment } from '../environments/environment';
import { DataService } from './services/data.service';
import { TokenStorageService } from './services/token-storage.service';
import { UserService } from './services/user/user.service';
@@ -60,7 +59,6 @@ export class AppComponent implements OnDestroy, OnInit {
public routerLinkResources = ['/' + $localize`resources`];
public showFooter = false;
public user: User;
- public version = environment.version;
private unsubscribeSubject = new Subject