1
0
Fork 0
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:
Daniele Ricci 2023-08-16 20:25:07 +02:00 committed by GitHub
parent 19bbdebdf7
commit 3fb60aca4f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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={[