fix: only show year if no rating for a movie

This commit is contained in:
Cory Dransfeldt 2024-08-13 09:05:12 -07:00
parent 922230ac24
commit c3563b0ac3
No known key found for this signature in database
3 changed files with 4 additions and 4 deletions

View file

@ -190,7 +190,7 @@ export default {
normalized['alt'] = item['title']
normalized['rating'] = item['rating']
normalized['favorite'] = item['favorite']
normalized['subtext'] = `${item['rating']} (${item['year']})`
normalized['subtext'] = item.rating ? `${item['rating']} (${item['year']})` : `(${item['year']})`
}
if (item['type'] === 'book') {
normalized['title'] = `${item['title']} by ${item['author']}`

4
package-lock.json generated
View file

@ -1,12 +1,12 @@
{
"name": "coryd.dev",
"version": "22.2.7",
"version": "22.2.8",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "coryd.dev",
"version": "22.2.7",
"version": "22.2.8",
"license": "MIT",
"dependencies": {
"@cdransf/api-text": "^1.5.0",

View file

@ -1,6 +1,6 @@
{
"name": "coryd.dev",
"version": "22.2.7",
"version": "22.2.8",
"description": "The source for my personal site. Built using 11ty (and other tools).",
"type": "module",
"scripts": {