File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -115,7 +115,7 @@ define([
115
115
executeOperationsChunk : function ( observable , operations ) {
116
116
var action = Action . NOOP ;
117
117
118
- var collection = observable . __value__ ;
118
+ var collection = observable . _getValue ( ) ;
119
119
var view = observable . view ;
120
120
// key = index of the __value__ array, value = index of the same value in the view
121
121
var connections = view . _connections ;
@@ -180,7 +180,7 @@ define([
180
180
181
181
if ( sorted ) {
182
182
// create sortedConnections to match the sorted collection to connections
183
- blocks . each ( observable . __value__ , function ( original , originalIndex ) {
183
+ blocks . each ( observable . _getValue ( ) , function ( original , originalIndex ) {
184
184
blocks . each ( collection , function ( value , newIndex ) {
185
185
if ( value == original ) {
186
186
sortedConnections [ newIndex ] = originalIndex ;
You can’t perform that action at this time.
0 commit comments