From 6161501fcab3f39c3c591ae34e91f716ecb07c53 Mon Sep 17 00:00:00 2001 From: syuilo Date: Fri, 27 Jul 2018 07:05:12 +0900 Subject: [PATCH] Fix bug --- locales/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/locales/index.js b/locales/index.js index 1d760db8a..5b525c77d 100644 --- a/locales/index.js +++ b/locales/index.js @@ -21,7 +21,7 @@ const langs = { Object.values(langs).forEach(locale => { // Extend native language (Japanese) - Object.assign(locale, native); + locale = Object.assign({}, native, locale); }); module.exports = langs;