small ui fix

This commit is contained in:
CITE\amentis 2024-09-24 11:26:35 +03:00
parent 14c0598384
commit d774254a1f
1 changed files with 1 additions and 1 deletions

View File

@ -136,7 +136,7 @@ export class PlanEditorComponent extends BaseEditor<PlanEditorModel, Plan> imple
} }
protected get canReverseFinalize(): boolean { protected get canReverseFinalize(): boolean {
return !this.isDeleted && !this.isNew && this.canEdit && this.isLockedByUser && this.item.status == PlanStatusEnum.Finalized && (this.hasPermission(this.authService.permissionEnum.EditPlan) || this.item?.authorizationFlags?.some(x => x === AppPermission.EditPlan)); return !this.isDeleted && !this.isNew && this.isLockedByUser && this.item.status == PlanStatusEnum.Finalized && (this.hasPermission(this.authService.permissionEnum.EditPlan) || this.item?.authorizationFlags?.some(x => x === AppPermission.EditPlan));
} }
protected canEditSection(id: Guid): boolean { protected canEditSection(id: Guid): boolean {