From 3d65f2b742326b76c3c49bbe8a44b1ef07efbf47 Mon Sep 17 00:00:00 2001 From: Timo Bejan Date: Wed, 21 Oct 2020 17:36:52 +0300 Subject: [PATCH] fixed lint --- apps/red-ui/src/app/state/app-state.service.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/red-ui/src/app/state/app-state.service.ts b/apps/red-ui/src/app/state/app-state.service.ts index a3554f127..4727a3028 100644 --- a/apps/red-ui/src/app/state/app-state.service.ts +++ b/apps/red-ui/src/app/state/app-state.service.ts @@ -57,7 +57,7 @@ export class AppStateService { get isActiveProjectOwner() { - return this._appState.activeProject.project.ownerId == this._userService.userId + return this._appState.activeProject.project.ownerId === this._userService.userId } get isActiveProjectMember() {