material-react-table-narender 2.13.8 → 2.13.9
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/index.esm.js +2 -3
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +2 -3
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/src/utils/cell.utils.ts +3 -4
package/dist/index.esm.js
CHANGED
@@ -523,9 +523,8 @@ const cellKeyboardShortcuts = ({ cell, cellElements, cellValue, containerElement
|
|
523
523
|
return; // Exit if it's an Autocomplete and it is focused
|
524
524
|
}
|
525
525
|
if (event.key === 'ArrowUp') {
|
526
|
-
|
527
|
-
|
528
|
-
if (autocompleteList) {
|
526
|
+
const popper = document.querySelector('.MuiPopper-root');
|
527
|
+
if (popper && getComputedStyle(popper).visibility === 'visible') {
|
529
528
|
return;
|
530
529
|
}
|
531
530
|
}
|