We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 162882f commit 9d1ec68Copy full SHA for 9d1ec68
1 file changed
knockout-paging.js
@@ -23,7 +23,7 @@
23
24
// Utilities
25
function isObservableArray(value) {
26
- return ko.isObservable(value) && 'push' in value;
+ return ko.isObservable(value) && 'push' in ko.unwrap(value);
27
}
28
29
function createRange(min, max) {
@@ -234,4 +234,4 @@
234
ko.pagedObservableArray = function (initialValue, options) {
235
return ko.observableArray(initialValue).extend({ paged: options });
236
};
237
-}));
+}));
0 commit comments