Fix auto-completion typo toLocaleLowerCase -> toLowerCase

This commit is contained in:
Tom Najdek 2025-07-15 19:18:30 +02:00 committed by Dan Stillman
parent 7c662dd59d
commit 78c1039a9f

View file

@ -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;
}