From 312d103910ab3e8c959dd07a301fa0c26a95fc3a Mon Sep 17 00:00:00 2001 From: qiang Date: Wed, 22 Sep 2021 20:38:37 +0800 Subject: [PATCH] fix(App): picker button text question/131204 --- src/core/helpers/i18n/index.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/core/helpers/i18n/index.js b/src/core/helpers/i18n/index.js index 88f4a06be..778fbc2c2 100644 --- a/src/core/helpers/i18n/index.js +++ b/src/core/helpers/i18n/index.js @@ -27,6 +27,8 @@ if (__PLATFORM__ === 'h5') { } else if (__PLATFORM__ === 'app-plus') { if (typeof weex === 'object') { locale = weex.requireModule('plus').getLanguage() + } else { + locale = '' } } else { locale = __GLOBAL__.getSystemInfoSync().language -- GitLab