Prevent tabbing into Notebook entries (#6315)

Closes #6312
- Set entry inputs to `tabindex="-1"` to prevent tabbing into entry inputs.

Co-authored-by: Jamie V <jamie.j.vigliotta@nasa.gov>
This commit is contained in:
Charles Hacskaylo 2023-02-09 15:51:38 -08:00 committed by GitHub
parent 7dcccee1ae
commit 672cb7e621
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -75,7 +75,7 @@
:id="entry.id"
class="c-ne__text c-ne__input"
aria-label="Notebook Entry Input"
tabindex="0"
tabindex="-1"
:contenteditable="canEdit"
v-bind.prop="formattedText"
@mouseover="checkEditability($event)"