From 1271153653ada3f8d95b8e39f0164d5b255abea0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20N=C3=BC=C3=9Flein?= Date: Fri, 28 Jul 2023 21:19:12 +0100 Subject: [PATCH] [Docs] `no-static-element-interactions`: tabIndex is written tabindex see https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/tabindex linting will also fail if it's `tabIndex` with a capital i --- docs/rules/no-static-element-interactions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/rules/no-static-element-interactions.md b/docs/rules/no-static-element-interactions.md index fcfa47553..147ea1b2a 100644 --- a/docs/rules/no-static-element-interactions.md +++ b/docs/rules/no-static-element-interactions.md @@ -21,7 +21,7 @@ Indicate the element's role with the `role` attribute: onClick={onClickHandler} onKeyPress={onKeyPressHandler} role="button" - tabIndex="0"> + tabindex="0"> Save ```