Search and filter limit issue fixed..

This commit is contained in:
Cüneyt Şentürk 2021-02-23 19:46:53 +03:00
parent 77f4c9a71b
commit 05d3706836

View File

@ -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;