From 920b3ab156e8bd4d78ab7d4205947df6d9b33e27 Mon Sep 17 00:00:00 2001 From: Janet Vorobyeva Date: Fri, 8 Sep 2023 13:41:25 -0700 Subject: [PATCH] lint --- app/client/components/LinkingState.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/client/components/LinkingState.ts b/app/client/components/LinkingState.ts index d0bb36ff..0a779b26 100644 --- a/app/client/components/LinkingState.ts +++ b/app/client/components/LinkingState.ts @@ -235,7 +235,7 @@ export class LinkingState extends Disposable { * Returns a boolean indicating whether editing should be disabled in the destination section. */ public disableEditing(): boolean { - if (!Boolean(this.filterState)) { return false; } + if (!this.filterState) { return false; } const srcRowId = this._srcSection.activeRowId(); return srcRowId === 'new' || srcRowId === null; }