1
0
Fork 0
mirror of https://github.com/Chocobozzz/PeerTube.git synced 2025-10-05 02:39:33 +02:00

Add ability to set a description to dynamic fields

This commit is contained in:
Chocobozzz 2020-08-21 14:45:57 +02:00 committed by Chocobozzz
parent 365783532e
commit 781ba98126
5 changed files with 12 additions and 2 deletions

View file

@ -3,6 +3,8 @@ export interface RegisterClientFormFieldOptions {
label: string
type: 'input' | 'input-checkbox' | 'input-textarea' | 'markdown-text' | 'markdown-enhanced'
descriptionHTML?: string
// Default setting value
default?: string | boolean
}