Compare commits

..

No commits in common. "b09b18ecd826f97704e76b6f8bd21c27a2b18f00" and "0ca847a87802f4f16fdc54b2b1c21ca5664ec813" have entirely different histories.

6 changed files with 11 additions and 7 deletions

View File

@ -66,9 +66,10 @@
class="date"
:class="{ nodate: !movie.date }"
>{{ format(movie.effectiveDate, {
day: movie.effectiveDate.getFullYear() === currentYear ? 'MMM d' : 'MMM d, y',
month: movie.effectiveDate.getFullYear() === currentYear ? 'MMM' : 'MMM y',
year: 'y',
}[movie.datePrecision] || (movie.effectiveDate.getFullYear() === currentYear ? 'MMM d' : 'MMM d, y')) }}</time>
}[movie.datePrecision]) }}</time>
</div>
<a

View File

@ -76,9 +76,10 @@
class="date"
:class="{ nodate: !scene.date }"
>{{ format(scene.effectiveDate, {
day: 'MMM d, y',
month: 'MMM y',
year: 'y',
}[scene.datePrecision] || 'MMM d, y') }}</time>
}[scene.datePrecision]) }}</time>
</Link>
</div>

4
package-lock.json generated
View File

@ -1,11 +1,11 @@
{
"name": "traxxx-web",
"version": "0.27.5",
"version": "0.27.4",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"version": "0.27.5",
"version": "0.27.4",
"dependencies": {
"@brillout/json-serializer": "^0.5.8",
"@dicebear/collection": "^7.0.5",

View File

@ -78,5 +78,5 @@
"postcss-custom-media": "^10.0.2",
"postcss-nesting": "^12.0.2"
},
"version": "0.27.5"
"version": "0.27.4"
}

View File

@ -91,9 +91,10 @@
:datetime="movie.effectiveDate.toISOString()"
class="date ellipsis"
>{{ formatDate(movie.effectiveDate, {
day: 'MMMM d, y',
month: 'MMMM y',
year: 'y',
}[movie.datePrecision] || 'MMMM d, y') }}</time>
}[movie.datePrecision]) }}</time>
</div>
<div class="header">

View File

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