diff --git a/ui/src/app/components/update-os-banner/update-os-banner.component.html b/ui/src/app/components/update-os-banner/update-os-banner.component.html index 0f8cbc42f..87f0f27e6 100644 --- a/ui/src/app/components/update-os-banner/update-os-banner.component.html +++ b/ui/src/app/components/update-os-banner/update-os-banner.component.html @@ -1,5 +1,5 @@ - New Embassy OS Version {{version}} Available! + New Embassy OS Version {{version | displayEmver}} Available! \ No newline at end of file diff --git a/ui/src/app/components/update-os-banner/update-os-banner.component.module.ts b/ui/src/app/components/update-os-banner/update-os-banner.component.module.ts index e06ba5fa8..2b058360d 100644 --- a/ui/src/app/components/update-os-banner/update-os-banner.component.module.ts +++ b/ui/src/app/components/update-os-banner/update-os-banner.component.module.ts @@ -2,6 +2,7 @@ import { NgModule } from '@angular/core' import { CommonModule } from '@angular/common' import { UpdateOsBannerComponent } from './update-os-banner.component' import { IonicModule } from '@ionic/angular' +import { SharingModule } from 'src/app/modules/sharing.module' @NgModule({ declarations: [ @@ -10,6 +11,7 @@ import { IonicModule } from '@ionic/angular' imports: [ CommonModule, IonicModule, + SharingModule, ], exports: [UpdateOsBannerComponent], }) diff --git a/ui/src/app/services/api/mock-api.service.ts b/ui/src/app/services/api/mock-api.service.ts index ba5308a33..2cd23a1b6 100644 --- a/ui/src/app/services/api/mock-api.service.ts +++ b/ui/src/app/services/api/mock-api.service.ts @@ -424,7 +424,7 @@ const mockApiServer: () => ReqRes.GetServerRes = () => ({ }) const mockVersionLatest: ReqRes.GetVersionLatestRes = { - versionLatest: '15.2.8', + versionLatest: '15.2.8.6', canUpdate: true, }