Skip to content

Commit

Permalink
Fix lint on toggle
Browse files Browse the repository at this point in the history
  • Loading branch information
Prospector committed Feb 21, 2025
1 parent 4c99e37 commit 37ecf75
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/ui/src/components/base/Toggle.vue
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<template>
<input
:id="id"
type="checkbox"
class="switch stylized-toggle"
:id="id"
:disabled="disabled"
:checked="checked"
@change="checked = !checked"
Expand Down

0 comments on commit 37ecf75

Please sign in to comment.