Escape search query in list search. Closes #1471.
This commit is contained in:
parent
16eeb9401e
commit
83c88d73d7
1 changed files with 1 additions and 1 deletions
|
@ -231,7 +231,7 @@ export default Vue.extend({
|
|||
getLists() {
|
||||
this.$api.queryLists({
|
||||
page: this.queryParams.page,
|
||||
query: this.queryParams.query,
|
||||
query: this.queryParams.query.replace(/[^\p{L}\p{N}\s]/gu, ''),
|
||||
order_by: this.queryParams.orderBy,
|
||||
order: this.queryParams.order,
|
||||
}).then((resp) => {
|
||||
|
|
Loading…
Reference in a new issue