fix: Hard to select text in link editor input

This commit is contained in:
Tom Moor
2022-10-23 13:43:22 -04:00
parent 1f1dd23e18
commit e00e3e232a

View File

@@ -108,7 +108,7 @@ export default class SelectionToolbar extends React.Component<Props> {
return;
}
if (!this.isActive) {
if (!this.isActive || document.activeElement?.tagName === "INPUT") {
return;
}