From 3e831c1648837371119dee1debeee925c8b44402 Mon Sep 17 00:00:00 2001 From: Rainer Killinger Date: Mon, 10 Oct 2022 14:52:32 +0200 Subject: [PATCH] refactor: reference openstapps framework vesion --- src/app/modules/about/about-page/about-page.component.ts | 3 --- src/app/modules/about/about-page/about-page.html | 2 +- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/src/app/modules/about/about-page/about-page.component.ts b/src/app/modules/about/about-page/about-page.component.ts index 2e0675c7..fff624cf 100644 --- a/src/app/modules/about/about-page/about-page.component.ts +++ b/src/app/modules/about/about-page/about-page.component.ts @@ -28,8 +28,6 @@ export class AboutPageComponent implements OnInit { version = packageJson.version; - appName: string; - constructor( private readonly route: ActivatedRoute, private readonly configProvider: ConfigProvider, @@ -37,7 +35,6 @@ export class AboutPageComponent implements OnInit { async ngOnInit() { const route = this.route.snapshot.url.map(it => it.path).join('/'); - this.appName = (this.configProvider.getValue('name') as string) ?? 'StApps'; this.content = ( this.configProvider.getValue( diff --git a/src/app/modules/about/about-page/about-page.html b/src/app/modules/about/about-page/about-page.html index 456b1f24..4e652f50 100644 --- a/src/app/modules/about/about-page/about-page.html +++ b/src/app/modules/about/about-page/about-page.html @@ -29,7 +29,7 @@ -
{{ appName }} v{{ version }}
+
Open StApps Framework v{{ version }}