fixes: Contact search is skipping the '+' sign for email. (#4142)
Co-authored-by: Pranav Raj S <pranav@chatwoot.com>
This commit is contained in:
parent
fb03b6f434
commit
b3545f42f1
1 changed files with 1 additions and 1 deletions
|
@ -253,7 +253,7 @@ export default {
|
||||||
this.$store.dispatch('contacts/get', requestParams);
|
this.$store.dispatch('contacts/get', requestParams);
|
||||||
} else {
|
} else {
|
||||||
this.$store.dispatch('contacts/search', {
|
this.$store.dispatch('contacts/search', {
|
||||||
search: value,
|
search: encodeURIComponent(value),
|
||||||
...requestParams,
|
...requestParams,
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue