mirror of
https://github.com/zotero/zotero.git
synced 2026-09-27 01:21:27 +00:00
Fix auto-completion typo toLocaleLowerCase -> toLowerCase
This commit is contained in:
parent
248ddf05d2
commit
c945afb2e1
1 changed files with 1 additions and 1 deletions
|
|
@ -727,7 +727,7 @@ class VirtualizedTable extends React.Component {
|
|||
}
|
||||
|
||||
_handleContextMenu = async (e, index) => {
|
||||
if (e.target.nodeName.toLocaleLowerCase() === 'input') {
|
||||
if (e.target.nodeName.toLowerCase() === 'input') {
|
||||
// Do not hijack context menu on inputs, fixes #5374
|
||||
return;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue