From 0af9047b64b305776a2f8287b83079f9faef3290 Mon Sep 17 00:00:00 2001 From: yflory Date: Tue, 7 Sep 2021 10:46:59 +0200 Subject: [PATCH] Fix conditional sections --- www/form/inner.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www/form/inner.js b/www/form/inner.js index c245ed42b..f106c335e 100644 --- a/www/form/inner.js +++ b/www/form/inner.js @@ -2980,7 +2980,7 @@ define([ if (results.hasOwnProperty(uid)) { return results[uid]; } APP.formBlocks.some(function (data) { if (!data.getValue) { return; } - if (data.uid === uid) { + if (data.uid === String(uid)) { results[uid] = data.getValue(); return true; }