From c66bb2349e307ec747f7d6b420312d3df64e550a Mon Sep 17 00:00:00 2001 From: Christopher Speller Date: Mon, 14 Aug 2017 17:48:08 -0700 Subject: [PATCH] Adding default of EN to localization store (#7208) --- webapp/stores/localization_store.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webapp/stores/localization_store.jsx b/webapp/stores/localization_store.jsx index 0a25c860dd..2eb4826997 100644 --- a/webapp/stores/localization_store.jsx +++ b/webapp/stores/localization_store.jsx @@ -12,7 +12,7 @@ class LocalizationStoreClass extends EventEmitter { constructor() { super(); - this.currentLocale = ''; + this.currentLocale = 'en'; this.currentTranslations = null; }