Fix event propagation after record creation (#11485)

Fixes https://github.com/twentyhq/twenty/issues/11460
This commit is contained in:
Weiko
2025-04-10 01:37:26 +02:00
committed by GitHub
parent 2b77f598b2
commit 7bd68ad176

View File

@ -56,11 +56,7 @@ export const RecordTitleCell = ({
persistField();
};
const handleClickOutside: FieldInputClickOutsideEvent = (
persistField,
event,
) => {
event.stopImmediatePropagation();
const handleClickOutside: FieldInputClickOutsideEvent = (persistField) => {
closeInlineCell();
persistField();
};