From 92881ead8192780111bb376756a2cf1c38ea5cc0 Mon Sep 17 00:00:00 2001 From: Angelina Filippova Date: Mon, 27 Jul 2020 22:42:44 +0300 Subject: [PATCH] Fix wrapping atoms that should be prepended with colon --- src/store/modules/normalizers.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/store/modules/normalizers.js b/src/store/modules/normalizers.js index 00a5968b..349cebff 100644 --- a/src/store/modules/normalizers.js +++ b/src/store/modules/normalizers.js @@ -134,7 +134,7 @@ const parseProxyUrl = value => { const prependWithСolon = (type, value) => { return (type === 'atom' && value.length > 0) || - (Array.isArray(type) && type.includes('atom') && typeof value === 'string') + (Array.isArray(type) && type.includes('boolean') && type.includes('atom') && typeof value === 'string') } export const processNested = (valueForState, valueForUpdatedSettings, group, parentKey, parents, settings, updatedSettings) => {