Skip to content

Commit

Permalink
Fix incorrect this for query error handler.
Browse files Browse the repository at this point in the history
Ideally this would have a test case but it's difficult to test for a store failure.

Fixes #18482.
  • Loading branch information
Conor Davis authored and wkeese committed Feb 6, 2015
1 parent 9b7d217 commit cf6ce0c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions form/_FormSelectWidget.js
Expand Up @@ -408,10 +408,10 @@ define([
}
this.onLoadDeferred.resolve(true);
this.onSetStore();
}), function(err){
}), lang.hitch(this, function(err){
console.error('dijit.form.Select: ' + err.toString());
this.onLoadDeferred.reject(err);
});
}));
}
return oStore; // dojo/data/api/Identity
},
Expand Down

0 comments on commit cf6ce0c

Please sign in to comment.