We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 26ccb1f commit 7001d6dCopy full SHA for 7001d6d
packages/webui/src/client/ui/PreviewPopUp/PreviewPopUpContext.tsx
@@ -110,11 +110,13 @@ export function convertSourceLayerItemToPreview(
110
type: 'video',
111
src: contentStatus?.previewUrl,
112
})
113
+ options.size = 'large'
114
} else if (contentStatus?.thumbnailUrl) {
115
contents.push({
116
type: 'image',
117
src: contentStatus.thumbnailUrl,
118
119
120
}
121
break
122
@@ -162,7 +164,9 @@ export function convertSourceLayerItemToPreview(
162
164
content: m as any,
163
165
})) || []),
166
]) as PreviewContent[],
- options: {},
167
+ options: {
168
+ size: 'large',
169
+ },
170
171
} else if (
172
(sourceLayerType === SourceLayerType.GRAPHICS || sourceLayerType === SourceLayerType.LOWER_THIRD) &&
0 commit comments