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
  • Loading branch information
alisdair committed Aug 15, 2016
1 parent b229ca9 commit 266474d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/ember-glimmer/lib/components/link-to.js
Original file line number Diff line number Diff line change
Expand Up @@ -805,7 +805,7 @@ const LinkComponent = EmberComponent.extend({
if (lastParam && lastParam.isQueryParams) {
queryParams = params.pop();
} else {
queryParams = {};
queryParams = { values: {} };
}
this.set('queryParams', queryParams);

Expand Down

0 comments on commit 266474d

Please sign in to comment.