mirror of
https://github.com/immich-app/immich.git
synced 2025-10-31 18:47:09 -04:00
chore: show leading zero week in storage template (#23275)
* Use date which shows week with a zero * Update sample date in SupportedDatetimePanel * Update web/src/lib/components/admin-settings/SupportedDatetimePanel.svelte --------- Co-authored-by: Alex <alex.tran1502@gmail.com>
This commit is contained in:
parent
02b29046b3
commit
b0d427f8f9
@ -11,7 +11,7 @@
|
|||||||
let { options }: Props = $props();
|
let { options }: Props = $props();
|
||||||
|
|
||||||
const getLuxonExample = (format: string) => {
|
const getLuxonExample = (format: string) => {
|
||||||
return DateTime.fromISO('2022-09-04T20:03:05.250Z', { locale: $locale }).toFormat(format);
|
return DateTime.fromISO('2022-02-15T20:03:05.250Z', { locale: $locale }).toFormat(format);
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
@ -23,7 +23,7 @@
|
|||||||
<div class="mt-2 rounded-lg bg-gray-200 p-4 text-xs dark:bg-gray-700 dark:text-immich-dark-fg">
|
<div class="mt-2 rounded-lg bg-gray-200 p-4 text-xs dark:bg-gray-700 dark:text-immich-dark-fg">
|
||||||
<div class="mb-2 text-gray-600 dark:text-immich-dark-fg">
|
<div class="mb-2 text-gray-600 dark:text-immich-dark-fg">
|
||||||
<p>{$t('admin.storage_template_date_time_description')}</p>
|
<p>{$t('admin.storage_template_date_time_description')}</p>
|
||||||
<p>{$t('admin.storage_template_date_time_sample', { values: { date: '2022-09-04T20:03:05.250' } })}</p>
|
<p>{$t('admin.storage_template_date_time_sample', { values: { date: '2022-02-03T20:03:05.250' } })}</p>
|
||||||
</div>
|
</div>
|
||||||
<div class="flex gap-[40px]">
|
<div class="flex gap-[40px]">
|
||||||
<div>
|
<div>
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user