Skip to content

Commit

Permalink
Merge branch 'master' into u/juliaroldi/getImage-fix
Browse files Browse the repository at this point in the history
  • Loading branch information
juliaroldi authored Sep 5, 2023
2 parents d38fa72 + 4f5bd68 commit 04dd124
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ export default function insertEntity(
entityModel,
typeof position == 'string' ? position : 'focus',
isBlock,
isBlock ? focusAfterEntity : true,
focusAfterEntity,
context
);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ describe('insertEntity', () => {
},
'begin',
false,
true,
undefined,
context
);
expect(getEntityFromElementSpy).toHaveBeenCalledWith(wrapper);
Expand Down Expand Up @@ -217,7 +217,7 @@ describe('insertEntity', () => {
},
'begin',
false,
true,
undefined,
context
);
expect(getEntityFromElementSpy).toHaveBeenCalledWith(wrapper);
Expand Down

0 comments on commit 04dd124

Please sign in to comment.