fix: missing property

This commit is contained in:
Cory Dransfeldt 2024-08-24 23:05:00 -07:00
parent 077c54d5fb
commit 9111405c3f
No known key found for this signature in database
4 changed files with 5 additions and 4 deletions

4
package-lock.json generated
View file

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

View file

@ -1,6 +1,6 @@
{ {
"name": "coryd.dev", "name": "coryd.dev",
"version": "23.0.0", "version": "23.0.1",
"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": {

View file

@ -116,7 +116,7 @@
/* svgs */ /* svgs */
--stroke-width-default: 1.4; --stroke-width-default: 1.4;
--stroke-width-bold: 2; --stroke-width-bold: 2;
--inline-margin-bottom: -6px; --inline-margin-bottom: -5px;
/* input accent color */ /* input accent color */
accent-color: var(--accent-color); accent-color: var(--accent-color);

View file

@ -66,6 +66,7 @@ const processMovies = (movies) => {
plays: item['plays'], plays: item['plays'],
collected: item['collected'], collected: item['collected'],
favorite: item['favorite'], favorite: item['favorite'],
tattoo: item['tattoo'],
rating: item['star_rating'], rating: item['star_rating'],
review: item['review'], review: item['review'],
id: item['tmdb_id'], id: item['tmdb_id'],