Files
Readarr/src/UI/Cells/Edit/QualityCellEditorTemplate.hbs
T

9 lines
259 B
Handlebars

{{#eachReverse items}}
{{#with quality}}
{{#if selected}}
<option value="{{id}}" selected="selected">{{name}}</option>
{{else}}
<option value="{{id}}">{{name}}</option>
{{/if}}
{{/with}}
{{/eachReverse}}