FOUR-23542 | Checkboxes Are Not Visually Unchecked#1874
FOUR-23542 | Checkboxes Are Not Visually Unchecked#1874mcraeteisha wants to merge 7 commits intodevelopfrom
Conversation
screen-builder
|
||||||||||||||||||||||||||||
| Project |
screen-builder
|
| Branch Review |
defect/FOUR-23542
|
| Run status |
|
| Run duration | 09m 39s |
| Commit |
|
| Committer | Teisha McRae |
| View all properties for this run ↗︎ | |
| Test results | |
|---|---|
|
|
0
|
|
|
0
|
|
|
19
|
|
|
0
|
|
|
389
|
| View all changes introduced in this branch ↗︎ | |
There was a problem hiding this comment.
This is the final PR Bugbot will review for you during this billing cycle
Your free Bugbot reviews will reset on December 21
Details
Your team is on the Bugbot Free tier. On this plan, Bugbot will review limited PRs each billing cycle for each member of your team.
To receive Bugbot reviews on all of your PRs, visit the Cursor dashboard to activate Pro and start your 14-day free trial.
This reverts commit 42e0862.
|
QA server K8S was successfully deployed https://ci-103aaecfa0.engk8s.processmaker.net |
|
QA server K8S was successfully deployed https://ci-103aaecfa0.engk8s.processmaker.net |
|
eiresendez
left a comment
There was a problem hiding this comment.
The patch fixes the checkbox default/false preservation so unchecked boxes stay visually unchecked on reload/loop; manual verification passes 👍





Issue
When checkboxes with
initiallyChecked: trueare unchecked in a loop and the user returns to the process task, all checkboxes appear checked despite correctfalsevalues in the data.Solution
Two locations in
DataManager.jsandDefaultValues.jsused falsy checks instead of explicitundefinedchecks. Replaced falsy checks with explicitundefinedchecks to preservefalseboolean values.How To Test
initiallyChecked: true(checkboxes should appear checked by default)ci:deploy
Code Review Checklist
Note
Ensure
FormCheckboxfalse values persist by using explicit undefined checks when resolving data and defaults.DataManager.dataFieldsto resolve values via an IIFE, adding checkbox-aware checks (vdataVal !== undefined,dataVal !== undefined) before falling back toinitialValue.defaultValues, detectFormCheckboxand pass flag tosetupDefaultValuefor bothdefaultValue(basic/js) andinitiallyChecked.setupDefaultValue, use checkbox-specificwas_filled(explicit undefined checks) and mount check (== null) to preservefalse; keep computed/watcher and mounted setter in sync.Written by Cursor Bugbot for commit f459684. This will update automatically on new commits. Configure here.