diff --git a/frontend/app/shared/components/rich-editor.component.ts b/frontend/app/shared/components/rich-editor.component.ts
index 3b3999ed7..216272047 100644
--- a/frontend/app/shared/components/rich-editor.component.ts
+++ b/frontend/app/shared/components/rich-editor.component.ts
@@ -208,7 +208,11 @@ export class RichEditorComponent extends StatefulControlComponent`;
+ if (asset.type === 'Video') {
+ content += ``;
+ } else {
+ content += `
`;
+ }
}
if (content.length > 0) {
@@ -238,7 +242,11 @@ export class RichEditorComponent extends StatefulControlComponent {
if (Types.is(asset, AssetDto)) {
- replaceText(`
`);
+ if (asset.type === 'Video') {
+ replaceText(``);
+ } else {
+ replaceText(`
`);
+ }
}
}, error => {
if (!Types.is(error, UploadCanceled)) {