Skip to content
This repository was archived by the owner on Aug 18, 2025. It is now read-only.

Commit fa3d70b

Browse files
committed
Lint
1 parent 86b1365 commit fa3d70b

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

src/view/use-sensor-marshal/is-event-in-interactive-element.js

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,11 @@ function isAnInteractiveElement(parent: Element, current: ?Element) {
3939
// of creating a contenteditable container
4040
// https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/contenteditable
4141
const attribute: ?string = current.getAttribute('contenteditable');
42-
if (attribute === 'true' || attribute === '' || attribute === "plaintext-only") {
42+
if (
43+
attribute === 'true' ||
44+
attribute === '' ||
45+
attribute === 'plaintext-only'
46+
) {
4347
return true;
4448
}
4549

0 commit comments

Comments
 (0)