Fixed shootId defined as Int rather than String
This commit is contained in:
parent
6751ff39a2
commit
2c386e4880
|
@ -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);
|
||||||
|
|
|
@ -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!]!
|
||||||
|
|
Loading…
Reference in New Issue