closed #1716 Fixed: JS exception in the AkauntingSearch component

This commit is contained in:
Cüneyt Şentürk 2021-01-03 12:56:16 +03:00
parent 1f02b34ab8
commit dace7ad06c

View File

@ -463,7 +463,9 @@ export default {
let cookie = Cookies.get('search-string'); let cookie = Cookies.get('search-string');
cookie = JSON.parse(cookie)[path]; if (cookie != undefined) {
cookie = JSON.parse(cookie)[path];
}
if (this.value) { if (this.value) {
let search_string = this.value.split(' '); let search_string = this.value.split(' ');
@ -486,7 +488,7 @@ export default {
} }
}, this); }, this);
if (!value && cookie[_filter.key]) { if (!value && (cookie != undefined && cookie[_filter.key])) {
value = cookie[_filter.key].value; value = cookie[_filter.key].value;
} }
@ -503,7 +505,7 @@ export default {
} }
}, this); }, this);
if (cookie[_filter.key]) { if (cookie != undefined && cookie[_filter.key]) {
this.selected_values.push(cookie[_filter.key]); this.selected_values.push(cookie[_filter.key]);
} }
} }