@@ -152,7 +152,7 @@
@@ -161,7 +161,7 @@
@@ -171,7 +171,7 @@
Who moderates the instance? What is the policy regarding NSFW videos? Political videos? etc
@@ -191,7 +191,7 @@
A single person? A non-profit? A company?
@@ -201,7 +201,7 @@
To share your personal videos? To open registrations and allow people to upload what they want?
@@ -211,7 +211,7 @@
It's important to know for users who want to register on your instance
@@ -221,7 +221,7 @@
With your own funds? With user donations? Advertising?
@@ -241,7 +241,7 @@
i.e. 2vCore 2GB RAM, a direct the link to the server you rent, etc.
diff --git a/client/src/app/+manage/video-channel-edit/video-channel-edit.component.html b/client/src/app/+manage/video-channel-edit/video-channel-edit.component.html
index 97edeee84..58d1cf2f5 100644
--- a/client/src/app/+manage/video-channel-edit/video-channel-edit.component.html
+++ b/client/src/app/+manage/video-channel-edit/video-channel-edit.component.html
@@ -70,7 +70,7 @@
>
diff --git a/client/src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html b/client/src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html
index 5ee74e6b1..7299e17d6 100644
--- a/client/src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html
+++ b/client/src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html
@@ -54,7 +54,7 @@
-
+
diff --git a/client/src/app/shared/shared-forms/dynamic-form-field.component.html b/client/src/app/shared/shared-forms/dynamic-form-field.component.html
index d447395ce..5b10bf335 100644
--- a/client/src/app/shared/shared-forms/dynamic-form-field.component.html
+++ b/client/src/app/shared/shared-forms/dynamic-form-field.component.html
@@ -28,13 +28,13 @@
diff --git a/client/src/app/shared/shared-forms/markdown-textarea.component.html b/client/src/app/shared/shared-forms/markdown-textarea.component.html
index 8a4877bd8..c120e9d38 100644
--- a/client/src/app/shared/shared-forms/markdown-textarea.component.html
+++ b/client/src/app/shared/shared-forms/markdown-textarea.component.html
@@ -4,7 +4,7 @@
[(ngModel)]="content" (ngModelChange)="onModelChange()"
class="form-control" [ngClass]="{ 'input-error': formError }"
[attr.disabled]="disabled || null"
- [id]="name" [name]="name" [dir]="dir">
+ [id]="inputId" [name]="inputId" [dir]="dir">
diff --git a/client/src/app/shared/shared-forms/markdown-textarea.component.ts b/client/src/app/shared/shared-forms/markdown-textarea.component.ts
index d334cb4a4..2e1e5899a 100644
--- a/client/src/app/shared/shared-forms/markdown-textarea.component.ts
+++ b/client/src/app/shared/shared-forms/markdown-textarea.component.ts
@@ -51,7 +51,7 @@ export class MarkdownTextareaComponent implements ControlValueAccessor, OnInit {
@Input() markdownVideo: Video
- @Input() name = 'description'
+ @Input({ required: true }) inputId: string
@Input() dir: string
@Input({ transform: booleanAttribute }) withEmoji = false