Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
jvorob committed Sep 8, 2023
1 parent b793f13 commit 72ae093
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/client/components/LinkingState.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down

0 comments on commit 72ae093

Please sign in to comment.