Skip to content
This repository has been archived by the owner on Nov 22, 2022. It is now read-only.

Commit

Permalink
Encode namespace name when creating export URL
Browse files Browse the repository at this point in the history
  • Loading branch information
Fajfa committed Oct 10, 2022
1 parent 7e8fb2f commit 1d2fe47
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/views/Namespace/Edit.vue
Expand Up @@ -444,7 +444,7 @@ export default {
exportNamespace () {
const params = {
namespaceID: this.namespace.namespaceID,
filename: this.namespace.name,
filename: encodeURIComponent(this.namespace.name),
}
const exportUrl = url.Make({
Expand Down

0 comments on commit 1d2fe47

Please sign in to comment.