Skip to content

Commit

Permalink
Default queryParams in link-to must have values
Browse files Browse the repository at this point in the history
Fixes #14010

(cherry picked from commit 266474d)
  • Loading branch information
alisdair authored and Robert Jackson committed Aug 15, 2016
1 parent 28f9cfb commit 116097b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/ember-htmlbars/lib/components/link-to.js
Original file line number Diff line number Diff line change
Expand Up @@ -805,7 +805,7 @@ let LinkComponent = EmberComponent.extend({
if (lastParam && lastParam.isQueryParams) {
queryParams = params.pop();
} else {
queryParams = {};
queryParams = { values: {} };
}
this.set('queryParams', queryParams);

Expand Down

0 comments on commit 116097b

Please sign in to comment.