feat: support rating radio fields
This commit is contained in:
parent
d31ce9b2cd
commit
abb4ba37f3
4 changed files with 9 additions and 9 deletions
10
package-lock.json
generated
10
package-lock.json
generated
|
@ -1,12 +1,12 @@
|
||||||
{
|
{
|
||||||
"name": "coryd.dev",
|
"name": "coryd.dev",
|
||||||
"version": "18.3.4",
|
"version": "18.4.4",
|
||||||
"lockfileVersion": 3,
|
"lockfileVersion": 3,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"name": "coryd.dev",
|
"name": "coryd.dev",
|
||||||
"version": "18.3.4",
|
"version": "18.4.4",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@cdransf/api-text": "^1.4.0",
|
"@cdransf/api-text": "^1.4.0",
|
||||||
|
@ -539,9 +539,9 @@
|
||||||
"peer": true
|
"peer": true
|
||||||
},
|
},
|
||||||
"node_modules/@types/node": {
|
"node_modules/@types/node": {
|
||||||
"version": "20.13.0",
|
"version": "20.14.0",
|
||||||
"resolved": "https://registry.npmjs.org/@types/node/-/node-20.13.0.tgz",
|
"resolved": "https://registry.npmjs.org/@types/node/-/node-20.14.0.tgz",
|
||||||
"integrity": "sha512-FM6AOb3khNkNIXPnHFDYaHerSv8uN22C91z098AnGccVu+Pcdhi+pNUFDi0iLmPIsVE0JBD0KVS7mzUYt4nRzQ==",
|
"integrity": "sha512-5cHBxFGJx6L4s56Bubp4fglrEpmyJypsqI6RgzMfBHWUJQGWAAi8cWcgetEbZXHYXo9C2Fa4EEds/uSyS4cxmA==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "coryd.dev",
|
"name": "coryd.dev",
|
||||||
"version": "18.3.4",
|
"version": "18.4.4",
|
||||||
"description": "The source for my personal site. Built using 11ty.",
|
"description": "The source for my personal site. Built using 11ty.",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|
|
@ -70,7 +70,7 @@ export default async function () {
|
||||||
status: book['read_status'],
|
status: book['read_status'],
|
||||||
progress: book['progress'],
|
progress: book['progress'],
|
||||||
tags: book['tags'],
|
tags: book['tags'],
|
||||||
rating: book['rating'] !== 'unrated' ? book['rating'] : '',
|
rating: book['star_rating'] !== 'unrated' ? book['star_rating'] : '',
|
||||||
isbn: book['isbn'],
|
isbn: book['isbn'],
|
||||||
type: 'book',
|
type: 'book',
|
||||||
}
|
}
|
||||||
|
|
|
@ -22,7 +22,7 @@ const fetchAllMovies = async () => {
|
||||||
collected,
|
collected,
|
||||||
plays,
|
plays,
|
||||||
favorite,
|
favorite,
|
||||||
rating,
|
star_rating,
|
||||||
description,
|
description,
|
||||||
review
|
review
|
||||||
`)
|
`)
|
||||||
|
@ -58,7 +58,7 @@ export default async function () {
|
||||||
plays: item['plays'],
|
plays: item['plays'],
|
||||||
collected: item['collected'],
|
collected: item['collected'],
|
||||||
favorite: item['favorite'],
|
favorite: item['favorite'],
|
||||||
rating: item['rating'],
|
rating: item['star_rating'],
|
||||||
description: item['description'],
|
description: item['description'],
|
||||||
review: item['review'],
|
review: item['review'],
|
||||||
id: item['tmdb_id'],
|
id: item['tmdb_id'],
|
||||||
|
|
Reference in a new issue