From 0d1148cdebe73a9421960cdce265d1ff7f5183b6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=BCneyt=20=C5=9Eent=C3=BCrk?= Date: Fri, 20 Nov 2020 11:41:53 +0300 Subject: [PATCH] fixed limit --- resources/assets/js/components/AkauntingSearch.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/resources/assets/js/components/AkauntingSearch.vue b/resources/assets/js/components/AkauntingSearch.vue index e1ec05745..99820aece 100644 --- a/resources/assets/js/components/AkauntingSearch.vue +++ b/resources/assets/js/components/AkauntingSearch.vue @@ -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 + '" limit:10'; } if (option_url) { @@ -283,7 +283,7 @@ export default { Cookies.set('search-string', serach_string, expires); - window.location = path + args + ' limit:10'; + window.location = path + args; }, onOptionSelected(value) {