Hi, a nice CSS trick thanks to @ThinhDinh to submit an Edit screen even if required choice components are not selected.
Use case: in an Edit screen, wish to display many choice components in bar for UX matters (instead of dropdown menu), but with 5 items.
→ This implies to make the choice component required, even if it is not mandatory in reality
→ This implies that the User is unable to submit/done the Edit screen if each component have not been selected.
(nb: CSS to be created before choice components are created)
[data-test="nav-button-Done"] {
pointer-events: auto;
}