Skip to content

Commit

Permalink
Closes #6516. Fixes issue with query string not being added to base p…
Browse files Browse the repository at this point in the history
…ath.

Fixes #6517
  • Loading branch information
stormpython authored and Spencer Alger committed Mar 15, 2016
1 parent 537aac0 commit 92dea05
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ui/public/chrome/api/nav.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export default function (chrome, internals) {
var isUrl = url && isString(url);
if (!isUrl) return url;

var parsed = parse(url);
var parsed = parse(url, true);
if (!parsed.host && parsed.pathname) {
if (parsed.pathname[0] === '/') {
parsed.pathname = chrome.getBasePath() + parsed.pathname;
Expand Down

0 comments on commit 92dea05

Please sign in to comment.