mirror of
https://gitea.invidious.io/iv-org/invidious-copy-2023-06-08.git
synced 2024-08-15 00:53:38 +00:00
Merge pull request #694 from 2secslater/player-preferences-typo-fix
Fix annoying typo in Preferences view for the player view
This commit is contained in:
commit
19eceb4ecc
1 changed files with 1 additions and 1 deletions
|
@ -115,7 +115,7 @@ function update_value(element) {
|
||||||
<div class="pure-control-group">
|
<div class="pure-control-group">
|
||||||
<label for="player_style"><%= translate(locale, "Player style: ") %></label>
|
<label for="player_style"><%= translate(locale, "Player style: ") %></label>
|
||||||
<select name="player_style" id="player_style">
|
<select name="player_style" id="player_style">
|
||||||
<% {"invidous", "youtube"}.each do |option| %>
|
<% {"invidious", "youtube"}.each do |option| %>
|
||||||
<option value="<%= option %>" <% if preferences.player_style == option %> selected <% end %>><%= translate(locale, option) %></option>
|
<option value="<%= option %>" <% if preferences.player_style == option %> selected <% end %>><%= translate(locale, option) %></option>
|
||||||
<% end %>
|
<% end %>
|
||||||
</select>
|
</select>
|
||||||
|
|
Loading…
Reference in a new issue