Skip to content

Commit

Permalink
Replace underscores with spaces in breadcrumbs
Browse files Browse the repository at this point in the history
  • Loading branch information
lukasolson committed Sep 6, 2016
1 parent 928f790 commit 2e8350e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ui/public/chrome/api/angular.js
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ module.exports = function (chrome, internals) {
length--;
}

return path.substr(1, length).split('/');
return path.substr(1, length).replace(/_/g, ' ').split('/');
};

const notify = new Notifier();
Expand Down

0 comments on commit 2e8350e

Please sign in to comment.