progress bar issue [COMP-253][COMP-254]
2 unresolved threads
2 unresolved threads
Merge request reports
Activity
14 14 15 15 16 16 const filterCallback = (question) => { 17 const typesWithLengthCheck = ["checkbox", "text","comment","multipletext"]; changed this line in version 3 of the diff
14 14 15 15 16 16 const filterCallback = (question) => { 17 const typesWithLengthCheck = ["checkbox", "text","comment","multipletext"]; 18 if (typesWithLengthCheck.includes(question.getType())) { 19 if (question.value !== null && question.value !== undefined) { 20 if (question.value.length > 0) { 21 return true; // Non-empty array 22 } else if (Object.keys(question.value).length > 0 && question.getType()==="multipletext") { changed this line in version 3 of the diff
mentioned in commit 6e1e70cf
Please register or sign in to reply