mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
Fix triple click breaking inputs (#5588)
This commit is contained in:
parent
27adab8d1c
commit
165bf57380
@ -107,8 +107,9 @@ class NonInjectedDrawer extends React.Component<DrawerProps & Dependencies & typ
|
|||||||
// detail: A count of consecutive clicks that happened in a short amount of time
|
// detail: A count of consecutive clicks that happened in a short amount of time
|
||||||
if (ev.detail === 3) {
|
if (ev.detail === 3) {
|
||||||
const selection = window.getSelection();
|
const selection = window.getSelection();
|
||||||
|
const isSelectingChildrenOfInputLabel = selection?.anchorNode instanceof HTMLLabelElement;
|
||||||
|
|
||||||
if (selection?.anchorNode?.parentNode) {
|
if (selection?.anchorNode?.parentNode && !isSelectingChildrenOfInputLabel) {
|
||||||
selection.selectAllChildren(selection.anchorNode.parentNode);
|
selection.selectAllChildren(selection.anchorNode.parentNode);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user