Skip to content

Commit

Permalink
revert small change on Checkbox
Browse files Browse the repository at this point in the history
  • Loading branch information
aalves08 committed Jan 6, 2025
1 parent 0eee8ba commit 072c566
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -227,15 +227,15 @@ export default defineComponent({
:checked="isChecked"
:value="valueWhenTrue"
type="checkbox"
:tabindex="isDisabled ? -1 : 0"
tabindex="-1"
:name="id"
@click.stop.prevent
@keyup.enter.stop.prevent
>
<span
class="checkbox-custom"
:class="{indeterminate: indeterminate}"
:tabindex="-1"
:tabindex="isDisabled ? -1 : 0"
:aria-label="label"
:aria-checked="!!value"
role="checkbox"
Expand Down

0 comments on commit 072c566

Please sign in to comment.