Fixed date failing for minute and hour date precision.

This commit is contained in:
2024-08-20 02:43:23 +02:00
parent 0ca847a878
commit 80d6216790
4 changed files with 4 additions and 8 deletions

View File

@@ -110,10 +110,9 @@
:datetime="scene.effectiveDate.toISOString()"
class="ellipsis compact-hide"
>{{ formatDate(scene.effectiveDate, {
day: 'MMMM d, y',
month: 'MMMM y',
year: 'y',
}[scene.datePrecision]) }}</time>
}[scene.datePrecision] || 'MMMM d, y') }}</time>
<time
:datetime="scene.effectiveDate.toISOString()"