Skip to content
Snippets Groups Projects
Commit dc5ea279 authored by Henrik Askjer's avatar Henrik Askjer
Browse files

Remove URI encoding

parent 58ddf7e2
No related branches found
No related tags found
No related merge requests found
...@@ -49,7 +49,7 @@ ...@@ -49,7 +49,7 @@
suggesting: null, suggesting: null,
debounced: debounce(function(q, self) { debounced: debounce(function(q, self) {
self.loading = true self.loading = true
return axios.get(self.endpoint + 'suggest?', { params: {q: encodeURIComponent(q), return axios.get(self.endpoint + 'suggest?', { params: {q: q,
dict: this.$parent.lang, dict: this.$parent.lang,
n: 9}} ) n: 9}} )
.then( .then(
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment