mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
fix title casing for six component files
This commit is contained in:
parent
514d4f6878
commit
eba23f41c6
9 changed files with 13 additions and 13 deletions
41
src/components/viewSettings/viewSettings.template.html
Normal file
41
src/components/viewSettings/viewSettings.template.html
Normal file
|
@ -0,0 +1,41 @@
|
|||
<div class="formDialogContent smoothScrollY" style="padding-top:2em;">
|
||||
<div class="dialogContentInner dialog-content-centered">
|
||||
<form style="margin:auto;">
|
||||
|
||||
<div class="verticalSection">
|
||||
|
||||
<div class="selectContainer viewSetting hide" data-settingname="imageType">
|
||||
<select is="emby-select" label="${LabelImageType}" class="selectImageType">
|
||||
<option value="primary">${Primary}</option>
|
||||
<option value="banner">${Banner}</option>
|
||||
<option value="disc">${Disc}</option>
|
||||
<option value="logo">${Logo}</option>
|
||||
<option value="thumb">${Thumb}</option>
|
||||
<option value="list">${List}</option>
|
||||
</select>
|
||||
</div>
|
||||
|
||||
<div class="checkboxContainer viewSetting viewSetting-checkboxContainer hide chkTitleContainer" data-settingname="showTitle">
|
||||
<label>
|
||||
<input is="emby-checkbox" type="checkbox" />
|
||||
<span>${ShowTitle}</span>
|
||||
</label>
|
||||
</div>
|
||||
|
||||
<div class="checkboxContainer viewSetting viewSetting-checkboxContainer hide chkYearContainer" data-settingname="showYear">
|
||||
<label>
|
||||
<input is="emby-checkbox" type="checkbox" />
|
||||
<span>${ShowYear}</span>
|
||||
</label>
|
||||
</div>
|
||||
|
||||
<div class="checkboxContainer viewSetting viewSetting-checkboxContainer hide" data-settingname="groupBySeries">
|
||||
<label>
|
||||
<input is="emby-checkbox" type="checkbox" />
|
||||
<span>${GroupBySeries}</span>
|
||||
</label>
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
Loading…
Add table
Add a link
Reference in a new issue