Tab index -1 for spinners so we dont tab to them

This commit is contained in:
Joe Knapper 2026-03-09 15:50:22 +00:00
parent 4fe0341225
commit a9fdb376fe

View file

@ -34,8 +34,8 @@
@animationend="animationEnd" @animationend="animationEnd"
/> />
<div class="spinner-buttons"> <div class="spinner-buttons">
<button type="button" @click="increment(1)" @mousedown="spinnerClick"></button> <button type="button" tabindex="-1" @click="increment(1)" @mousedown="spinnerClick"></button>
<button type="button" @click="increment(-1)" @mousedown="spinnerClick"></button> <button type="button" tabindex="-1" @click="increment(-1)" @mousedown="spinnerClick"></button>
</div> </div>
</div> </div>
<sync-property-button @click="requestUpdate" /> <sync-property-button @click="requestUpdate" />