Skip to content

Commit

Permalink
Closes emberjs#4155 - query-params-new: error in paramsFor()
Browse files Browse the repository at this point in the history
  • Loading branch information
florent-blanvillain committed Jan 16, 2014
1 parent efafb6c commit 7a89ba7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/ember-routing/lib/system/route.js
Original file line number Diff line number Diff line change
Expand Up @@ -1318,7 +1318,7 @@ if (Ember.FEATURES.isEnabled("query-params-new")) {
var value = (resultsName in queryParams) ?
queryParams[resultsName] : params[resultsName];
delete params[resultsName];
params[colonized.split(':').pop()] = value;
set(params, colonized.split(':').pop(), value);
});

return params;
Expand Down

0 comments on commit 7a89ba7

Please sign in to comment.