We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 954aa78 commit c7d9ddcCopy full SHA for c7d9ddc
static/src/js/components/CollectionAssociationForm/CollectionAssociationForm.jsx
@@ -306,7 +306,8 @@ const CollectionAssociationForm = ({ metadata }) => {
306
// Creates an action cell based on the current concept type
307
const buildActionsCell = useCallback((cellData, rowData) => {
308
let disabled = false
309
- let checked = false
+ // Use null to allow uncontrolled checkbox behavior, preserving toggle functionality
310
+ let checked = null
311
312
const { conceptId: collectionConceptId } = rowData
313
const { collections = {} } = fetchedDraft
0 commit comments