File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -177,7 +177,7 @@ describe('edit column editor type', () => {
177177 await nextFrame ( ) ;
178178 editor . focusElement . click ( ) ;
179179 focusout ( editor ) ;
180- focusin ( editor . _overlayElement . querySelector ( 'vaadin-select-item' ) ) ;
180+ focusin ( editor . _menuElement . querySelector ( 'vaadin-select-item' ) ) ;
181181 grid . _flushStopEdit ( ) ;
182182 await nextRender ( ) ;
183183 expect ( editor . opened ) . to . equal ( true ) ;
@@ -214,7 +214,7 @@ describe('edit column editor type', () => {
214214
215215 it ( 'should update value and exit edit mode when item is selected' , async ( ) => {
216216 grid . singleCellEdit = true ;
217- const item = editor . _overlayElement . querySelector ( 'vaadin-select-item' ) ;
217+ const item = editor . _menuElement . querySelector ( 'vaadin-select-item' ) ;
218218 const value = item . textContent ;
219219 const spy = sinon . spy ( cell , 'focus' ) ;
220220 item . click ( ) ;
@@ -226,7 +226,7 @@ describe('edit column editor type', () => {
226226
227227 it ( 'should work with `enterNextRow`' , async ( ) => {
228228 grid . enterNextRow = true ;
229- const item = editor . _overlayElement . querySelector ( 'vaadin-select-item' ) ;
229+ const item = editor . _menuElement . querySelector ( 'vaadin-select-item' ) ;
230230 enter ( item ) ;
231231 await nextFrame ( ) ;
232232 expect ( column . _getEditorComponent ( cell ) ) . to . not . be . ok ;
You can’t perform that action at this time.
0 commit comments