feat(react/collections/board): title editor not dismissing on blur

This commit is contained in:
Elian Doran 2025-09-13 09:20:18 +03:00
parent 3ce6b43018
commit 92a0faf475
No known key found for this signature in database

View File

@ -265,6 +265,8 @@ export function TitleEditor({ currentValue, placeholder, save, dismiss, multilin
if (newValue.trim() && (newValue !== currentValue || isNewItem)) {
save(newValue);
dismissOnNextRefreshRef.current = true;
} else {
dismiss();
}
}}
/>