Fix conditional sections

pull/1/head
yflory 2021-09-07 10:46:59 +02:00
parent 652fc6abcd
commit 0af9047b64
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}