diff --git a/client/package.json b/client/package.json index 560a240..f8f9943 100644 --- a/client/package.json +++ b/client/package.json @@ -1,6 +1,6 @@ { "name": "starrysea-client", - "version": "1.0.5", + "version": "1.0.6", "scripts": { "ng": "ng", "start": "ng serve", diff --git a/client/src/app/app-routing.module.ts b/client/src/app/app-routing.module.ts index c6d0198..a93e950 100644 --- a/client/src/app/app-routing.module.ts +++ b/client/src/app/app-routing.module.ts @@ -95,7 +95,7 @@ const routes: Routes = [ }, { path:'**', - component:NotFoundComponent + redirectTo:'/404' } ]; diff --git a/client/src/app/view/about/about.component.html b/client/src/app/view/about/about.component.html index 6b7f9aa..3f3c59f 100644 --- a/client/src/app/view/about/about.component.html +++ b/client/src/app/view/about/about.component.html @@ -32,8 +32,8 @@

About Us

Latest System Releases: {{Version}}

-

Front-End: v1.0.5

-

Back-End: v1.0.5

+

Front-End: v1.0.6

+

Back-End: v1.0.6

Latest Commit: {{commit}}

diff --git a/client/src/app/view/activity/activity.component.html b/client/src/app/view/activity/activity.component.html index 800cc8a..1b8f439 100644 --- a/client/src/app/view/activity/activity.component.html +++ b/client/src/app/view/activity/activity.component.html @@ -18,4 +18,3 @@

Activities

- diff --git a/client/src/app/view/home/home.component.html b/client/src/app/view/home/home.component.html index 73aa815..e20f90a 100644 --- a/client/src/app/view/home/home.component.html +++ b/client/src/app/view/home/home.component.html @@ -19,4 +19,3 @@

Dedicated to delivering the best of LoveLiv About us

- diff --git a/client/src/app/view/home/home.component.ts b/client/src/app/view/home/home.component.ts index 0350277..618d39e 100644 --- a/client/src/app/view/home/home.component.ts +++ b/client/src/app/view/home/home.component.ts @@ -17,7 +17,7 @@ export class HomeComponent implements OnInit { this.titleService.setTitle('Starry Sea Volunteers Association'); this.metaService.updateTag({content:'/assets/icons/starrysea-512x512.png'}, "property='og:image'"); this.metaService.updateTag({content: 'Starry Sea Volunteers Association'}, "property='og:title'"); - this.metaService.updateTag({content: ''}, "property='og:description'"); + this.metaService.updateTag({content: 'We Are Starry Sea Volunteers Association'}, "property='og:description'"); this.metaService.updateTag({content: 'We Are Starry Sea Volunteers Association'}, "name='description'"); } diff --git a/client/src/app/view/work/work.component.ts b/client/src/app/view/work/work.component.ts index 8d921de..0436021 100644 --- a/client/src/app/view/work/work.component.ts +++ b/client/src/app/view/work/work.component.ts @@ -23,9 +23,9 @@ export class WorkComponent implements OnInit { this.titleService.setTitle('Works Gallery - Starry Sea Volunteers Association'); this.metaService.updateTag({content:'/assets/icons/starrysea-512x512.png'}, "property='og:image'"); this.metaService.updateTag({content: 'Work Gallery - Starry Sea Volunteers Association'}, "property='og:title'"); - this.metaService.updateTag({content: 'We Are Starry Sea Volunteers Association'}, "property='og:description'"); - this.metaService.updateTag({content: 'We Are Starry Sea Volunteers Association'}, "name='description'"); - this.workService.fetchWorkList(1,10) + this.metaService.updateTag({content: 'All Works from Starry Sea'}, "property='og:description'"); + this.metaService.updateTag({content: 'All Works from Starry Sea'}, "name='description'"); + this.workService.fetchWorkList(1,99) .subscribe(data=>{ this.workArr = data.json().response })