File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed
src/components/utils/popover Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change 77- ` Fix ` - Fix selection of first block in read-only initialization with "autofocus=true"
88- ` Fix ` - Incorrect caret position after blocks merging in Safari
99- ` Fix ` - Several toolbox items exported by the one tool have the same shortcut displayed in toolbox
10+ - ` Fix ` - Fix issue where the block copy does not work when a block is selected using the settings button
1011
1112### 2.30.6
1213
Original file line number Diff line number Diff line change @@ -119,7 +119,9 @@ export abstract class PopoverAbstract<Nodes extends PopoverNodes = PopoverNodes>
119119 this . nodes . popover . classList . add ( css . popoverOpened ) ;
120120
121121 if ( this . search !== undefined ) {
122- this . search . focus ( ) ;
122+ requestAnimationFrame ( ( ) => {
123+ this . search ?. focus ( ) ;
124+ } ) ;
123125 }
124126 }
125127
You can’t perform that action at this time.
0 commit comments