diff options
author | Jesús <heckyel@hyperbola.info> | 2022-10-05 10:30:17 +0800 |
---|---|---|
committer | Jesús <heckyel@hyperbola.info> | 2022-10-05 10:30:17 +0800 |
commit | 85860087b609837acf6a52b0d5549a47434fd9e2 (patch) | |
tree | df79ecad7863fed52fe92b08c2fc6b4e78a88653 | |
parent | a19da4050c1bdabb60c5c248a8da2bf7ff869f9f (diff) | |
download | yt-local-85860087b609837acf6a52b0d5549a47434fd9e2.tar.lz yt-local-85860087b609837acf6a52b0d5549a47434fd9e2.tar.xz yt-local-85860087b609837acf6a52b0d5549a47434fd9e2.zip |
Fix missing id into input tag
-rw-r--r-- | youtube/templates/watch.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/youtube/templates/watch.html b/youtube/templates/watch.html index 63981b1..4030a18 100644 --- a/youtube/templates/watch.html +++ b/youtube/templates/watch.html @@ -167,7 +167,7 @@ <div class="playlist-header"> <a href="{{ playlist['url'] }}" title="{{ playlist['title'] }}"><h3>{{ playlist['title'] }}</h3></a> <ul class="playlist-metadata"> - <li><label for="playlist-autoplay-toggle">Autoplay: </label><input type="checkbox" class="autoplay-toggle"></li> + <li><label for="playlist-autoplay-toggle">Autoplay: </label><input id="playlist-autoplay-toggle" type="checkbox" class="autoplay-toggle"></li> {% if playlist['current_index'] is none %} <li>[Error!]/{{ playlist['video_count'] }}</li> {% else %} @@ -190,7 +190,7 @@ </nav> </div> {% elif settings.related_videos_mode != 0 %} - <div class="related-autoplay"><label for="related-autoplay-toggle">Autoplay: </label><input type="checkbox" class="autoplay-toggle"></div> + <div class="related-autoplay"><label for="related-autoplay-toggle">Autoplay: </label><input id="related-autoplay-toggle" type="checkbox" class="autoplay-toggle"></div> {% endif %} {% if subtitle_sources %} |