diff --git a/client/coral-framework/helpers/plugins.js b/client/coral-framework/helpers/plugins.js index 8fc3310e6..57caf2c46 100644 --- a/client/coral-framework/helpers/plugins.js +++ b/client/coral-framework/helpers/plugins.js @@ -50,6 +50,11 @@ function withWarnings(component, queryData) { // Show warnings when accessing queryData only when not in production. return mapValues(queryData, (value, key) => { + + // Keep null values.. + if (!queryData[key]) { + return queryData[key]; + } return new Proxy(queryData[key], { get(target, name) {