select remote issue solved.

This commit is contained in:
Cüneyt Şentürk 2020-11-17 11:14:35 +03:00
parent 58646d926c
commit 9b7991011a
3 changed files with 4 additions and 2 deletions

View File

@ -226,7 +226,7 @@ export default {
let option_url = this.selected_options[this.filter_index].url;
if (this.search) {
option_url += '?search=' + this.search;
option_url += '?search="' + this.search + '"';
}
if (option_url) {
@ -258,7 +258,7 @@ export default {
let args = '';
if (this.search) {
args += '?search=' + this.search + ' ';
args += '?search="' + this.search + '" ';
}
let now = new Date();

View File

@ -262,6 +262,7 @@ export default {
selected: this.model,
form: {},
sort_options: [],
new_options: {},
}

View File

@ -374,6 +374,7 @@ export default {
selected: this.model,
form: {},
sort_options: [],
new_options: {},
loading: false,