Skip to content

Commit f13103b

Browse files
authored
fix: changes comment to trigger release (#855)
1 parent 37b0f01 commit f13103b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/casl-angular/src/pipes.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ export class AblePurePipe<T extends AnyAbility> implements PipeTransform {
2323
this._ability = ability;
2424
}
2525

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

0 commit comments

Comments
 (0)