Skip to content

Commit

Permalink
Lint code with ESLint and Prettier
Browse files Browse the repository at this point in the history
Triggered by 6988b10 on branch refs/heads/issue-4464
  • Loading branch information
melton-jason authored and github-actions[bot] committed Jan 26, 2024
1 parent 6988b10 commit 915c9b0
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -365,7 +365,10 @@ export class BusinessRuleManager<SCHEMA extends AnySchema> {
])
);

if (Object.values(partialFilters).includes(undefined) || partialFilters[rule.scopes[0]] === null)
if (
Object.values(partialFilters).includes(undefined) ||
partialFilters[rule.scopes[0]] === null
)
return { valid: true };

return new this.resource.specifyModel.LazyCollection({
Expand Down

0 comments on commit 915c9b0

Please sign in to comment.