summaryrefslogtreecommitdiffstats
path: root/portal-FE-common/src/app/layout/components/footer/footer.component.ts
diff options
context:
space:
mode:
Diffstat (limited to 'portal-FE-common/src/app/layout/components/footer/footer.component.ts')
-rw-r--r--portal-FE-common/src/app/layout/components/footer/footer.component.ts27
1 files changed, 0 insertions, 27 deletions
diff --git a/portal-FE-common/src/app/layout/components/footer/footer.component.ts b/portal-FE-common/src/app/layout/components/footer/footer.component.ts
deleted file mode 100644
index 9b5cc8f6..00000000
--- a/portal-FE-common/src/app/layout/components/footer/footer.component.ts
+++ /dev/null
@@ -1,27 +0,0 @@
-import { Component, OnInit } from '@angular/core';
-import { ManifestService } from 'src/app/shared/services';
-
-
-@Component({
- selector: 'app-footer',
- templateUrl: './footer.component.html',
- styleUrls: ['./footer.component.scss']
-})
-export class FooterComponent implements OnInit {
-
- buildVersion: string;
- constructor(private manifest: ManifestService) { }
-
- ngOnInit() {
- this.buildVersion = '';
- this.manifestDetails();
- }
-
- manifestDetails() {
- this.manifest.getManifest().subscribe((_res: any) => {
- this.buildVersion = _res.manifest['Build-Number'];
- }, (_err) => {
-
- });
- }
-}