fix: only show year if no rating for a movie
This commit is contained in:
parent
922230ac24
commit
c3563b0ac3
3 changed files with 4 additions and 4 deletions
|
@ -190,7 +190,7 @@ export default {
|
||||||
normalized['alt'] = item['title']
|
normalized['alt'] = item['title']
|
||||||
normalized['rating'] = item['rating']
|
normalized['rating'] = item['rating']
|
||||||
normalized['favorite'] = item['favorite']
|
normalized['favorite'] = item['favorite']
|
||||||
normalized['subtext'] = `${item['rating']} (${item['year']})`
|
normalized['subtext'] = item.rating ? `${item['rating']} (${item['year']})` : `(${item['year']})`
|
||||||
}
|
}
|
||||||
if (item['type'] === 'book') {
|
if (item['type'] === 'book') {
|
||||||
normalized['title'] = `${item['title']} by ${item['author']}`
|
normalized['title'] = `${item['title']} by ${item['author']}`
|
||||||
|
|
4
package-lock.json
generated
4
package-lock.json
generated
|
@ -1,12 +1,12 @@
|
||||||
{
|
{
|
||||||
"name": "coryd.dev",
|
"name": "coryd.dev",
|
||||||
"version": "22.2.7",
|
"version": "22.2.8",
|
||||||
"lockfileVersion": 3,
|
"lockfileVersion": 3,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"name": "coryd.dev",
|
"name": "coryd.dev",
|
||||||
"version": "22.2.7",
|
"version": "22.2.8",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@cdransf/api-text": "^1.5.0",
|
"@cdransf/api-text": "^1.5.0",
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "coryd.dev",
|
"name": "coryd.dev",
|
||||||
"version": "22.2.7",
|
"version": "22.2.8",
|
||||||
"description": "The source for my personal site. Built using 11ty (and other tools).",
|
"description": "The source for my personal site. Built using 11ty (and other tools).",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|
Reference in a new issue