Apply lang selector and update user config #85

Merged
jsegarra merged 5 commits from wbuezas/hedera-web-mindshore:feature/ApplyLangSelector into 4922-vueMigration 2024-09-17 07:51:01 +00:00
1 changed files with 1 additions and 7 deletions
Showing only changes of commit f4fea5e904 - Show all commits

View File

@ -114,13 +114,7 @@ export const useUserStore = defineStore('user', {
async updateUserLang(lang) {
if (!this.user || this.user.lang === lang) return;
await jApi.execQuery(
`START TRANSACTION;
UPDATE account.myUser SET lang = #lang WHERE (id = #id);
SELECT lang FROM account.myUser WHERE (id = #id);
COMMIT;`,
{ id: this.user.id, lang }
);
this.user.lang = lang;
this.updateSiteLocale();
notify(t('dataSaved'), 'positive');