Skip to content

Commit

Permalink
[ACS-5540] fixed lock-file bug
Browse files Browse the repository at this point in the history
  • Loading branch information
Yasa-Nataliya committed Sep 20, 2023
1 parent 03af416 commit cac2d13
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ import { AppStore, EditOfflineAction, infoDrawerMetadataAspect, NodeActionTypes
import { AppConfigService, NotificationService } from '@alfresco/adf-core';
import { Observable, Subject } from 'rxjs';
import { Store } from '@ngrx/store';
import { ContentMetadataModule, ContentMetadataService } from '@alfresco/adf-content-services';
import { CardViewGroup, ContentMetadataModule, ContentMetadataService } from '@alfresco/adf-content-services';
import { filter, takeUntil } from 'rxjs/operators';
import { CommonModule } from '@angular/common';
import { Actions, ofType } from '@ngrx/effects';
Expand All @@ -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,7 @@ export class MetadataTabComponent implements OnInit, OnDestroy {
editable = false;
editableTags = false;
editableCategories = false;
group: CardViewGroup;

constructor(
private permission: NodePermissionService,
Expand Down Expand Up @@ -98,6 +100,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 cac2d13

Please sign in to comment.