mirror of
https://github.com/immich-app/immich.git
synced 2025-01-06 11:56:46 +01:00
chore(web): better explain what the thumbnails type are for (#3724)
This commit is contained in:
parent
19bbdebdf7
commit
3fb60aca4f
1 changed files with 4 additions and 4 deletions
|
@ -79,8 +79,8 @@
|
||||||
<form autocomplete="off" on:submit|preventDefault>
|
<form autocomplete="off" on:submit|preventDefault>
|
||||||
<div class="ml-4 mt-4 flex flex-col gap-4">
|
<div class="ml-4 mt-4 flex flex-col gap-4">
|
||||||
<SettingSelect
|
<SettingSelect
|
||||||
label="WEBP RESOLUTION"
|
label="SMALL THUMBNAIL RESOLUTION"
|
||||||
desc="Higher resolutions can preserve more detail but take longer to encode, have larger file sizes, and can reduce app responsiveness."
|
desc="Used when viewing groups of photos (main timeline, album view, etc.). Higher resolutions can preserve more detail but take longer to encode, have larger file sizes, and can reduce app responsiveness."
|
||||||
number
|
number
|
||||||
bind:value={thumbnailConfig.webpSize}
|
bind:value={thumbnailConfig.webpSize}
|
||||||
options={[
|
options={[
|
||||||
|
@ -94,8 +94,8 @@
|
||||||
/>
|
/>
|
||||||
|
|
||||||
<SettingSelect
|
<SettingSelect
|
||||||
label="JPEG RESOLUTION"
|
label="LARGE THUMBNAIL RESOLUTION"
|
||||||
desc="Higher resolutions can preserve more detail but take longer to encode, have larger file sizes, and can reduce app responsiveness."
|
desc="Used when viewing a single photo and for machine learning. Higher resolutions can preserve more detail but take longer to encode, have larger file sizes, and can reduce app responsiveness."
|
||||||
number
|
number
|
||||||
bind:value={thumbnailConfig.jpegSize}
|
bind:value={thumbnailConfig.jpegSize}
|
||||||
options={[
|
options={[
|
||||||
|
|
Loading…
Reference in a new issue