When rails renders this tag, it is not including the class
<%= f.collection_select(:native_language, Language.order('language ASC').all, :language, :language, class: "input_standard", :default => [Language.find_by(:language => "English")] ) %>
This is what is rendered:
<select name="user[native_language]" id="user_native_language">
<option value="English">English</option>
<option value="French">French</option>
<option value="Spanish">Spanish</option>
</select>
Why isn't the class showing up? I've tried moving around class: "input_standard" with no luck.