From 6f490b49c2a01a6a873f8fa781a796b6f697ced1 Mon Sep 17 00:00:00 2001 From: enahum Date: Thu, 9 Jun 2016 12:12:32 -0300 Subject: [PATCH] PLT-3254 Javascript error and can't login with Spanish Client language (#3298) --- webapp/stores/user_store.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webapp/stores/user_store.jsx b/webapp/stores/user_store.jsx index f57ecf1cd6..218a7f1dbd 100644 --- a/webapp/stores/user_store.jsx +++ b/webapp/stores/user_store.jsx @@ -104,7 +104,7 @@ class UserStoreClass extends EventEmitter { this.currentUserId = user.id; global.window.mm_current_user_id = this.currentUserId; if (LocalizationStore.getLocale() !== user.locale) { - GlobalActions.newLocalizationSelected(user.locale); + setTimeout(() => GlobalActions.newLocalizationSelected(user.locale), 0); } }