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 9e11dd2 commit 3c73c7cCopy full SHA for 3c73c7c
frontend/src/components/atoms/BlockContent/BlockContent.tsx
@@ -123,6 +123,7 @@ function BlockContent(blockDTO: Block) {
123
if (blockDTO.value !== content) {
124
await handleBlock(content);
125
}
126
+ onBlurHandler();
127
};
128
const updateValue = handleValue;
129
@@ -291,7 +292,6 @@ function BlockContent(blockDTO: Block) {
291
292
onDrop={dropHandler}
293
onDragEnter={() => setDragOverToggle(true)}
294
onDragLeave={() => setDragOverToggle(false)}
- onBlur={onBlurHandler}
295
>
296
{listBlockType(blockDTO, listCnt.current)}
297
<div
0 commit comments