mirror of
https://github.com/lingble/chatwoot.git
synced 2026-03-20 03:52:43 +00:00
11 lines
240 B
JavaScript
11 lines
240 B
JavaScript
import Vue from 'vue';
|
|
export const buildSearchParamsWithLocale = search => {
|
|
const locale = Vue.config.lang;
|
|
if (search) {
|
|
search = `${search}&locale=${locale}`;
|
|
} else {
|
|
search = `?locale=${locale}`;
|
|
}
|
|
return search;
|
|
};
|