diff --git a/client/src/app/components/category-list/category-list.component.ts b/client/src/app/components/category-list/category-list.component.ts index 4a2d40b..bfcb32d 100644 --- a/client/src/app/components/category-list/category-list.component.ts +++ b/client/src/app/components/category-list/category-list.component.ts @@ -12,6 +12,7 @@ import { ErrorHandlerService } from 'src/app/services/error-handler.service'; }) export class CategoryListComponent implements OnInit { public categoryList: Array = []; + public search: string = ''; constructor( private router: Router, diff --git a/client/src/app/components/product-list/product-list.component.ts b/client/src/app/components/product-list/product-list.component.ts index 75bf871..1f6f32d 100644 --- a/client/src/app/components/product-list/product-list.component.ts +++ b/client/src/app/components/product-list/product-list.component.ts @@ -14,6 +14,7 @@ export class ProductListComponent implements OnInit { @Input() productList: Array = []; public categoryList: Array = []; @Input() categoryView: Boolean = false; + public search: string = ''; constructor( private stjornaService: StjornaService, diff --git a/client/src/app/components/service-list/service-list.component.ts b/client/src/app/components/service-list/service-list.component.ts index 6d41c8a..3b9b244 100644 --- a/client/src/app/components/service-list/service-list.component.ts +++ b/client/src/app/components/service-list/service-list.component.ts @@ -14,6 +14,7 @@ export class ServiceListComponent implements OnInit { @Input() serviceList: Array = []; public categoryList: Array = []; @Input() categoryView: Boolean = false; + public search: string = ''; constructor( private stjornaService: StjornaService, diff --git a/client/src/app/models/config.ts b/client/src/app/models/config.ts index d8b761e..4cf41a9 100644 --- a/client/src/app/models/config.ts +++ b/client/src/app/models/config.ts @@ -1,8 +1,8 @@ export class Config { - private password_secret: string; - private allow_remote_access: boolean; - private image: ConfigImage; - private installed: boolean; + password_secret: string; + allow_remote_access: boolean; + image: ConfigImage; + installed: boolean; constructor( password_secret?: string, diff --git a/client/src/app/pages/profile/profile.component.html b/client/src/app/pages/profile/profile.component.html index ee2a461..1517269 100644 --- a/client/src/app/pages/profile/profile.component.html +++ b/client/src/app/pages/profile/profile.component.html @@ -50,7 +50,7 @@
{{'profile.basic.title' | translate}}
{{'profile.basic.password.newRepeat' | translate}}
Every field is required. Please enter correct values. The new passwords has to be the same one.