Skip to content

Commit 83e4351

Browse files
ci: apply automated fixes
1 parent 183ad57 commit 83e4351

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

packages/devtools/src/devtools.tsx

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,11 @@ export default function DevTools() {
169169
if (!element || !(element instanceof HTMLElement)) return false
170170
if (element.isContentEditable) return true
171171
const tagName = element.tagName
172-
if (tagName === 'INPUT' || tagName === 'TEXTAREA' || tagName === 'SELECT') {
172+
if (
173+
tagName === 'INPUT' ||
174+
tagName === 'TEXTAREA' ||
175+
tagName === 'SELECT'
176+
) {
173177
return true
174178
}
175179
return element.getAttribute('role') === 'textbox'

0 commit comments

Comments
 (0)