1
0
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:
Sebastian Malton 2022-06-30 05:26:08 -07:00 committed by GitHub
parent 27adab8d1c
commit 165bf57380
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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
if (ev.detail === 3) {
const selection = window.getSelection();
const isSelectingChildrenOfInputLabel = selection?.anchorNode instanceof HTMLLabelElement;
if (selection?.anchorNode?.parentNode) {
if (selection?.anchorNode?.parentNode && !isSelectingChildrenOfInputLabel) {
selection.selectAllChildren(selection.anchorNode.parentNode);
}
}