Skip to content

Commit

Permalink
fixes incorrect use of label tag (#3408)
Browse files Browse the repository at this point in the history
  • Loading branch information
Ashish020202 authored Dec 10, 2023
1 parent cb7e262 commit 288b413
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@
</div>
<div id="movable" tabindex="-1">
<p>Solfege Pitch Preview</p>
<input class="radioBtn" type="radio" name="movable" value="true">
<input class="radioBtn" type="radio" name="movable" value="true" id="movabledo">
<label for="movabledo">Movable Do</label>
<input class="radioBtn" type="radio" name="movable" id="fixed" checked="checked" value="false">
<label for="fixed">Fixed</label>
Expand Down
4 changes: 2 additions & 2 deletions planet/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ <h4 id="publisher-ptitle"></h4>
<div class="row">
<div class="input-field">
<div class="chips chips-autocomplete" id="tagsadd"></div>
<label for="publish-tags" id="publish-tags-label"></label>
<label for="publish-tags" id="tagsadd"></label>
</div>
</div>
</div>
Expand Down Expand Up @@ -160,7 +160,7 @@ <h3 class="header center light-green-text" id="globaltitle"></h3>
<option value="DOWNLOADED" id="option-downloaded"></option>
<option value="ALPHABETICAL" id="option-alphabetical"></option>
</select>
<label id="option-sort-by"></label>
<label for="sort-select" id="option-sort-by"></label>
</div>
</div>
<div class="row">
Expand Down

0 comments on commit 288b413

Please sign in to comment.