From e65ba5a90364ad1ca5e0f9a960d1cf66ca64f89f Mon Sep 17 00:00:00 2001 From: Valentyne Stigloher Date: Sun, 9 Jun 2024 22:55:21 +0200 Subject: [PATCH] (translation mode) allow check in of missing translations which equal the base translations --- store/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/store/index.ts b/store/index.ts index 9ae5ea0d1..ebd6bbd89 100644 --- a/store/index.ts +++ b/store/index.ts @@ -87,7 +87,7 @@ export const mutations: MutationTree = { state.translationMode = false; }, translate(state, { translator, key, newValue }) { - if (newValue !== translator.get(key)) { + if (newValue !== translator.get(key, false, false, false)) { const translationChanges = { ...state.translationChanges }; translationChanges[key] = newValue; state.translationChanges = translationChanges;