diff --git a/frontend/src/_helpers/utils.js b/frontend/src/_helpers/utils.js index 06c2f1f4df..08d9caa14c 100644 --- a/frontend/src/_helpers/utils.js +++ b/frontend/src/_helpers/utils.js @@ -91,6 +91,7 @@ function resolveCode(code, state, customObjects = {}, withError = false, reserve } export function resolveReferences(object, state, defaultValue, customObjects = {}, withError = false) { + if (object === '{{{}}}') return ''; const reservedKeyword = ['app']; //Keywords that slows down the app object = _.clone(object); const objectType = typeof object;