Fixed shootId defined as Int rather than String

This commit is contained in:
DebaucheryLibrarian 2024-09-05 16:58:36 +02:00
parent 6751ff39a2
commit 2c386e4880
2 changed files with 7 additions and 4 deletions

View File

@ -488,10 +488,13 @@ function copySummary() {
margin: .25rem .5rem .5rem 0; margin: .25rem .5rem .5rem 0;
line-height: 1.25; line-height: 1.25;
display: -webkit-box; display: -webkit-box;
&:not(:active) {
-webkit-box-orient: vertical; -webkit-box-orient: vertical;
-webkit-line-clamp: 2; -webkit-line-clamp: 2;
overflow: hidden; overflow: hidden;
} }
}
.notitle { .notitle {
color: var(--grey-dark-10); color: var(--grey-dark-10);

View File

@ -109,7 +109,7 @@ export const scenesSchema = `
duration: Int duration: Int
description: String description: String
createdAt: Date createdAt: Date
shootId: Int shootId: String
channel: Entity channel: Entity
network: Entity network: Entity
actors: [Actor!]! actors: [Actor!]!