{{ message }}
FOUR-23542 | Checkboxes Are Not Visually Unchecked#1874
Open
mcraeteisha wants to merge 7 commits into
Open
Conversation
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
approved these changes
Dec 17, 2025
eiresendez
left a comment
Contributor
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 👍
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.






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.