Fix update of custom object icon (#8730)
Icon update was not triggering a save due to missing onBlur prop drill
This commit is contained in:
@ -152,7 +152,10 @@ export const SettingsDataModelObjectAboutForm = ({
|
||||
<IconPicker
|
||||
disabled={disableEdition}
|
||||
selectedIconKey={value}
|
||||
onChange={({ iconKey }) => onChange(iconKey)}
|
||||
onChange={({ iconKey }) => {
|
||||
onChange(iconKey);
|
||||
onBlur?.();
|
||||
}}
|
||||
/>
|
||||
)}
|
||||
/>
|
||||
|
||||
Reference in New Issue
Block a user