diff options
| author | bobzel <zzzman@gmail.com> | 2023-08-22 00:56:33 -0400 |
|---|---|---|
| committer | bobzel <zzzman@gmail.com> | 2023-08-22 00:56:33 -0400 |
| commit | 0a3f6776c4bc22778948800e906b44d39e685af9 (patch) | |
| tree | 0245bf415008ac5a2f7a62bc35f48db4643bcc05 /src/client/views/newlightbox/components | |
| parent | 27dbbbf401fc64cbca00f5ce60e6dea1cbd3e33d (diff) | |
fixed some errors
Diffstat (limited to 'src/client/views/newlightbox/components')
| -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'); |
