fix(react/ribbon/collection): default property not working

This commit is contained in:
Elian Doran
2025-09-13 11:05:37 +03:00
parent cbc2ee3cd1
commit f281e9691d

View File

@@ -140,7 +140,7 @@ function ComboBoxPropertyView({ note, property }: { note: FNote, property: Combo
<FormSelectWithGroups
values={property.options}
keyProperty="value" titleProperty="label"
currentValue={value ?? ""} onChange={setValue}
currentValue={value ?? property.defaultValue} onChange={setValue}
/>
</LabelledEntry>
)