Skip to content

Commit

Permalink
fix(util:pipe:filter): use pure (#1735)
Browse files Browse the repository at this point in the history
  • Loading branch information
cipchk committed Dec 20, 2023
1 parent b5bea4e commit f374209
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/util/pipes/filter/filter.pipe.ts
Expand Up @@ -2,7 +2,8 @@ import { Pipe, PipeTransform } from '@angular/core';

import type { NzSafeAny } from 'ng-zorro-antd/core/types';

@Pipe({ name: 'filter', standalone: true })
// eslint-disable-next-line @angular-eslint/no-pipe-impure
@Pipe({ name: 'filter', standalone: true, pure: false })
export class FilterPipe implements PipeTransform {
/**
* Filter array
Expand Down

0 comments on commit f374209

Please sign in to comment.