material-react-table-narender 2.13.13 → 2.13.14
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.esm.js +1 -1
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/src/utils/cell.utils.ts +1 -1
    
        package/dist/index.js
    CHANGED
    
    | @@ -530,7 +530,7 @@ const cellKeyboardShortcuts = ({ cell, cellElements, cellValue, containerElement | |
| 530 530 | 
             
                debugger;
         | 
| 531 531 | 
             
                const { getState, setEnableKeyboardShortcuts, } = table;
         | 
| 532 532 | 
             
                const { enableKeyboardShortcuts } = getState();
         | 
| 533 | 
            -
                if (event.altKey | 
| 533 | 
            +
                if (event.altKey) {
         | 
| 534 534 | 
             
                    event.preventDefault();
         | 
| 535 535 | 
             
                    setEnableKeyboardShortcuts(!enableKeyboardShortcuts);
         | 
| 536 536 | 
             
                    return;
         |