From 84f70ac20836c5807a4cb5c23a53175872eff63d Mon Sep 17 00:00:00 2001 From: Kavin Venkatachalam Date: Tue, 28 May 2024 18:02:23 +0530 Subject: [PATCH] fix: setExposedVariables are not working after creating a page --- frontend/src/_helpers/appUtils.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/_helpers/appUtils.js b/frontend/src/_helpers/appUtils.js index 646570ad41..ba6df07e44 100644 --- a/frontend/src/_helpers/appUtils.js +++ b/frontend/src/_helpers/appUtils.js @@ -122,7 +122,7 @@ export function onComponentOptionsChanged(component, options, id) { const existingRef = lookUpTable.resolvedRefs?.get(lookUpTable.hints?.get(path)); - if (typeof existingRef === 'function') return; + if (typeof existingRef === 'function') continue; const shouldUpdateRef = existingRef !== componentData[option[0]];