Skip to content

Commit

Permalink
fix: changes comment to trigger release (#855)
Browse files Browse the repository at this point in the history
  • Loading branch information
stalniy authored Nov 21, 2023
1 parent 37b0f01 commit f13103b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/casl-angular/src/pipes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export class AblePurePipe<T extends AnyAbility> implements PipeTransform {
this._ability = ability;
}

// TODO: `Observable` can be removed after https://github.com/angular/angular/issues/15041
// TODO: use computed signals https://github.com/angular/angular/issues/47553
transform(...args: Parameters<T['can']>): Observable<boolean> {
return new Observable((s) => {
const emit = () => s.next(this._ability.can(...args));
Expand Down

0 comments on commit f13103b

Please sign in to comment.