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