Search and filter limit issue fixed..
This commit is contained in:
parent
77f4c9a71b
commit
05d3706836
@ -264,6 +264,10 @@ export default {
|
||||
}
|
||||
|
||||
if (option_url) {
|
||||
if (option_url.indexOf('limit') === -1) {
|
||||
option_url += ' limit:10';
|
||||
}
|
||||
|
||||
window.axios.get(option_url)
|
||||
.then(response => {
|
||||
this.values = [];
|
||||
@ -385,6 +389,10 @@ export default {
|
||||
}
|
||||
|
||||
if (!this.option_values[value] && option_url) {
|
||||
if (option_url.indexOf('limit') === -1) {
|
||||
option_url += ' limit:10';
|
||||
}
|
||||
|
||||
window.axios.get(option_url)
|
||||
.then(response => {
|
||||
let data = response.data.data;
|
||||
|
Loading…
x
Reference in New Issue
Block a user