[ACS-5540] added group lock changes

This commit is contained in:
Yasa-Nataliya
2023-09-22 20:56:13 +05:30
parent ed561bcf8b
commit c38a0460b8

View File

@@ -49,6 +49,7 @@ import { Actions, ofType } from '@ngrx/effects';
[(editable)]="editable"
[(editableTags)]="editableTags"
[(editableCategories)]="editableCategories"
[(group)]="group"
>
</adf-content-metadata>
`,
@@ -65,6 +66,9 @@ export class MetadataTabComponent implements OnInit, OnDestroy {
editable = false;
editableTags = false;
editableCategories = false;
group: any = {
editable: false
};
constructor(
private permission: NodePermissionService,
@@ -98,6 +102,7 @@ export class MetadataTabComponent implements OnInit, OnDestroy {
this.editable = false;
this.editableTags = false;
this.editableCategories = false;
this.group.editable = false;
}
});
}