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; }