Skip to content

Commit

Permalink
Don't encode name.
Browse files Browse the repository at this point in the history
  • Loading branch information
richburdon committed Dec 20, 2020
1 parent fe16ced commit 5f9f759
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion packages/console-app/src/components/AppLink.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,9 @@ const getAppUrl = (config, { wrn }) => {
pathComponents.push(prefix.substring(1));
}

pathComponents.push(encodeURIComponent(wrn));
// TODO(burdon): Make names URL safe so that encoding is not required.
// pathComponents.push(encodeURIComponent(wrn));
pathComponents.push(wrn);
return `${pathComponents.join('/')}/`;
};

Expand Down

0 comments on commit 5f9f759

Please sign in to comment.