Merge pull request #694 from 2secslater/player-preferences-typo-fix

Fix annoying typo in Preferences view for the player view
このコミットが含まれているのは:
Omar Roth 2019-08-14 19:17:29 -05:00 committed by GitHub
コミット 19eceb4ecc
この署名に対応する既知のキーがデータベースに存在しません
GPGキーID: 4AEE18F83AFDEB23
1個のファイルの変更1行の追加1行の削除

ファイルの表示

@ -115,7 +115,7 @@ function update_value(element) {
<div class="pure-control-group">
<label for="player_style"><%= translate(locale, "Player style: ") %></label>
<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>
<% end %>
</select>