diff options
| author | geireann <geireann.lindfield@gmail.com> | 2023-08-22 14:39:36 -0400 |
|---|---|---|
| committer | geireann <geireann.lindfield@gmail.com> | 2023-08-22 14:39:36 -0400 |
| commit | 79b4bb99d8a30ca599dd04afc5b0853a062c5854 (patch) | |
| tree | cbb23d6b983430b63d5260256df2a7bb58c48a7e /src/client/views/newlightbox | |
| parent | c9fe812391b68b1337f50d4e572a18640e39ff3b (diff) | |
| parent | b6ae8cbceff76f3cfe9e1b9da87a728213c749df (diff) | |
Merge branch 'master' into sophie-ai-images
Diffstat (limited to 'src/client/views/newlightbox')
| -rw-r--r-- | src/client/views/newlightbox/components/Recommendation/Recommendation.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client/views/newlightbox/components/Recommendation/Recommendation.tsx b/src/client/views/newlightbox/components/Recommendation/Recommendation.tsx index 2c2f04b9f..96846673b 100644 --- a/src/client/views/newlightbox/components/Recommendation/Recommendation.tsx +++ b/src/client/views/newlightbox/components/Recommendation/Recommendation.tsx @@ -25,11 +25,11 @@ export const Recommendation = (props: IRecommendation) => { switch (type) { case 'YouTube': console.log('create ', type, 'document'); - doc = Docs.Create.VideoDocument(data, { title: title, _width: 400, _height: 315, transcript: transcript }); + doc = Docs.Create.VideoDocument(data, { title: title, _width: 400, _height: 315, transcript }); break; case 'Video': console.log('create ', type, 'document'); - doc = Docs.Create.VideoDocument(data, { title: title, _width: 400, _height: 315, transcript: transcript }); + doc = Docs.Create.VideoDocument(data, { title: title, _width: 400, _height: 315, transcript }); break; case 'Webpage': console.log('create ', type, 'document'); |
