diff options
-rw-r--r-- | client/src/app/+videos/+video-edit/shared/video-edit.component.ts | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/client/src/app/+videos/+video-edit/shared/video-edit.component.ts b/client/src/app/+videos/+video-edit/shared/video-edit.component.ts index 2bc0e6bb4..89687f35e 100644 --- a/client/src/app/+videos/+video-edit/shared/video-edit.component.ts +++ b/client/src/app/+videos/+video-edit/shared/video-edit.component.ts | |||
@@ -355,6 +355,9 @@ export class VideoEditComponent implements OnInit, OnDestroy { | |||
355 | for (const setting of this.pluginFields) { | 355 | for (const setting of this.pluginFields) { |
356 | await this.pluginService.translateSetting(setting.pluginInfo.plugin.npmName, setting.commonOptions) | 356 | await this.pluginService.translateSetting(setting.pluginInfo.plugin.npmName, setting.commonOptions) |
357 | 357 | ||
358 | // Not a form input, just a HTML tag | ||
359 | if (setting.commonOptions.type === 'html') continue | ||
360 | |||
358 | const validator = async (control: AbstractControl) => { | 361 | const validator = async (control: AbstractControl) => { |
359 | if (!setting.commonOptions.error) return null | 362 | if (!setting.commonOptions.error) return null |
360 | 363 | ||