Skip to content

Commit

Permalink
fix: block copy using settings button
Browse files Browse the repository at this point in the history
  • Loading branch information
laishere committed Oct 20, 2024
1 parent 6313409 commit 4c27414
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions docs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
- `Fix` - Fix selection of first block in read-only initialization with "autofocus=true"
- `Fix` - Incorrect caret position after blocks merging in Safari
- `Fix` - Several toolbox items exported by the one tool have the same shortcut displayed in toolbox
- `Fix` - Fix issue where the block copy does not work when a block is selected using the settings button

### 2.30.6

Expand Down
4 changes: 3 additions & 1 deletion src/components/utils/popover/popover-abstract.ts
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,9 @@ export abstract class PopoverAbstract<Nodes extends PopoverNodes = PopoverNodes>
this.nodes.popover.classList.add(css.popoverOpened);

if (this.search !== undefined) {
this.search.focus();
requestAnimationFrame(() => {
this.search?.focus();
});
}
}

Expand Down

0 comments on commit 4c27414

Please sign in to comment.