Skip to content

Commit

Permalink
Fix list page return type lost. (#462)
Browse files Browse the repository at this point in the history
  • Loading branch information
a44281071 committed Mar 8, 2021
1 parent 0c216b1 commit ec02c3b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/DynamicData/List/ObservableListEx.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1213,7 +1213,7 @@ public static IObservable<IChangeSet<T>> Or<T>(this IObservableList<ISourceList<
/// <param name="source">The source.</param>
/// <param name="requests">Observable to control page requests.</param>
/// <returns>An observable which emits the change set.</returns>
public static IObservable<IChangeSet<T>> Page<T>(this IObservable<IChangeSet<T>> source, IObservable<IPageRequest> requests)
public static IObservable<IPageChangeSet<T>> Page<T>(this IObservable<IChangeSet<T>> source, IObservable<IPageRequest> requests)
{
if (source is null)
{
Expand Down

0 comments on commit ec02c3b

Please sign in to comment.