X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=dashboard%2Fwebapp-frontend%2Fsrc%2Fapp%2Ffooter%2Ffooter.component.ts;h=66430ecb9753c4b11d24b491d5603f7d2c904e84;hb=1eec0d44e5961b7ff17bf9169005e1de08fc2a74;hp=e119d70d38af9bee053eddcf140fc83ad352fa3b;hpb=a2bc79c5f0027e953815d6e98814a748b36827aa;p=nonrtric.git diff --git a/dashboard/webapp-frontend/src/app/footer/footer.component.ts b/dashboard/webapp-frontend/src/app/footer/footer.component.ts index e119d70d..66430ecb 100644 --- a/dashboard/webapp-frontend/src/app/footer/footer.component.ts +++ b/dashboard/webapp-frontend/src/app/footer/footer.component.ts @@ -3,6 +3,7 @@ * O-RAN-SC * %% * Copyright (C) 2019 AT&T Intellectual Property + * Modifications Copyright (C) 2019 Nordix Foundation * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -40,7 +41,8 @@ export class FooterComponent implements OnInit { public ui: UiService ) { } ngOnInit() { - this.dashboardService.getVersion().subscribe((res: DashboardSuccessTransport) => this.dashboardVersion = res.data); + this.dashboardVersion = '0.0'; + //this.dashboardService.getVersion().subscribe((res: DashboardSuccessTransport) => this.dashboardVersion = res.data); this.ui.darkModeState.subscribe((isDark) => { this.darkMode = isDark; });