Skip to content

Commit

Permalink
ajuste de lint
Browse files Browse the repository at this point in the history
  • Loading branch information
renanarosario committed Dec 3, 2024
1 parent 00d4679 commit 061f299
Showing 1 changed file with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -290,14 +290,13 @@ export class PoPageDynamicSearchComponent
}

private onRemoveAllDisclaimers() {
const fixedFilters = this.filters.filter(filter => {
return (
const fixedFilters = this.filters.filter(
filter =>
filter.fixed === true &&
filter.hasOwnProperty('initValue') &&
filter.initValue !== undefined &&
filter.initValue !== null
);
});
);

const disclaimersToKeep = fixedFilters.map(filter => ({
property: filter.property,
Expand Down

0 comments on commit 061f299

Please sign in to comment.