Skip to content

Commit

Permalink
[ACS-5540] added group lock changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Yasa-Nataliya committed Sep 22, 2023
1 parent 9cf69ba commit c8ec858
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ import { Actions, ofType } from '@ngrx/effects';
[(editable)]="editable"
[(editableTags)]="editableTags"
[(editableCategories)]="editableCategories"
[(group)]="group"
>
</adf-content-metadata>
`,
Expand All @@ -65,6 +66,9 @@ export class MetadataTabComponent implements OnInit, OnDestroy {
editable = false;
editableTags = false;
editableCategories = false;
group: any = {
editable: false
};

constructor(
private permission: NodePermissionService,
Expand Down Expand Up @@ -98,6 +102,7 @@ export class MetadataTabComponent implements OnInit, OnDestroy {
this.editable = false;
this.editableTags = false;
this.editableCategories = false;
this.group.editable = false;
}
});
}
Expand Down

0 comments on commit c8ec858

Please sign in to comment.