aboutsummaryrefslogtreecommitdiffstats
path: root/catalog-ui/src/app/ng2/services/properties.service.ts
diff options
context:
space:
mode:
Diffstat (limited to 'catalog-ui/src/app/ng2/services/properties.service.ts')
-rw-r--r--catalog-ui/src/app/ng2/services/properties.service.ts10
1 files changed, 10 insertions, 0 deletions
diff --git a/catalog-ui/src/app/ng2/services/properties.service.ts b/catalog-ui/src/app/ng2/services/properties.service.ts
index c86d207915..f6b77320df 100644
--- a/catalog-ui/src/app/ng2/services/properties.service.ts
+++ b/catalog-ui/src/app/ng2/services/properties.service.ts
@@ -25,6 +25,8 @@ import { PropertyFEModel, PropertyBEModel, PropertyDeclareAPIModel, DerivedFEPro
@Injectable()
export class PropertiesService {
+ checkedPropertyType: string;
+
constructor() {
}
@@ -81,5 +83,13 @@ export class PropertiesService {
return selectedProps;
}
+ setCheckedPropertyType(type: string){
+ this.checkedPropertyType = type;
+ }
+
+ getCheckedPropertyType(){
+ return this.checkedPropertyType;
+ }
+
}