Skip to content

Commit

Permalink
Fix a spoiler button issue
Browse files Browse the repository at this point in the history
  • Loading branch information
SaphireLattice committed Dec 2, 2022
1 parent 3f09ac6 commit c874857
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -319,27 +319,27 @@ html {
class="form-check-input"
type="checkbox"
v-model="state.showPhonetic"
id="flexCheckDefault"
id="spoilerGatedFeatureCheckbox"
/>
<label class="form-check-label" for="flexCheckDefault"> Phonetic </label>
<label class="form-check-label" for="spoilerGatedFeatureCheckbox"> Phonetic </label>
</div>
<div class="form-check font-size-1 ms-2">
<input
class="form-check-input"
type="checkbox"
v-model="state.spoilerMode"
id="flexCheckDefault"
id="spoilerCheckbox"
/>
<label class="form-check-label" for="flexCheckDefault"> Spoil! </label>
<label class="form-check-label" for="spoilerCheckbox"> Spoil! </label>
</div>
<div class="form-check font-size-1 ms-2">
<input
class="form-check-input"
type="checkbox"
v-model="state.glyphOnly"
id="flexCheckDefault"
id="glyphCheckbox"
/>
<label class="form-check-label" for="flexCheckDefault"> Glyph </label>
<label class="form-check-label" for="glyphCheckbox"> Glyph </label>
</div>
</h2>
</div>
Expand Down

0 comments on commit c874857

Please sign in to comment.