Skip to content

Commit

Permalink
fixing typing bug in rxjs
Browse files Browse the repository at this point in the history
  • Loading branch information
Pat Sissons committed Dec 5, 2017
1 parent 45932e0 commit 7a68708
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/WebRx/Extensions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,8 @@ export function observeCommand<T, TRet>(
.debounce(x => {
return x.command.canExecuteObservable
.startWith(x.command.canExecute)
.filter(y => y);
.filter(y => y)
.map(() => 0);
})
.map(x => {
return x.command
Expand Down

0 comments on commit 7a68708

Please sign in to comment.