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.
2 parents b868b75 + d445b33 commit c092ea9Copy full SHA for c092ea9
packages/webui/src/client/ui/PreviewPopUp/PreviewPopUpContext.tsx
@@ -150,7 +150,13 @@ export function convertSourceLayerItemToPreview(
150
src: contentStatus.thumbnailUrl,
151
}
152
: undefined,
153
- // todo - add in-out words after rebasing
+ content.lastWords
154
+ ? {
155
+ type: 'inOutWords',
156
+ in: content.firstWords,
157
+ out: content.lastWords,
158
+ }
159
+ : undefined,
160
...(contentStatus?.messages?.map<PreviewContent>((m) => ({
161
type: 'warning',
162
content: m as any,
0 commit comments