Fix auto-completion typo toLocaleLowerCase -> toLowerCase

This commit is contained in:
Tom Najdek 2025-07-15 19:18:30 +02:00
parent 248ddf05d2
commit c945afb2e1
No known key found for this signature in database
GPG key ID: EEC61A7B4C667D77

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