diff --git a/src/frontend/app/ui/settings/template/settings-entry/settings-entry.component.html b/src/frontend/app/ui/settings/template/settings-entry/settings-entry.component.html index 91333888..9c306671 100644 --- a/src/frontend/app/ui/settings/template/settings-entry/settings-entry.component.html +++ b/src/frontend/app/ui/settings/template/settings-entry/settings-entry.component.html @@ -286,7 +286,11 @@ - {{description}} + + + [Experimental] + + {{description}} ';' separated list. diff --git a/src/frontend/app/ui/settings/template/settings-entry/settings-entry.component.ts b/src/frontend/app/ui/settings/template/settings-entry/settings-entry.component.ts index 7639144c..be5ee1a2 100644 --- a/src/frontend/app/ui/settings/template/settings-entry/settings-entry.component.ts +++ b/src/frontend/app/ui/settings/template/settings-entry/settings-entry.component.ts @@ -52,6 +52,7 @@ export class SettingsEntryComponent name: string; required: boolean; dockerWarning: boolean; + experimental: boolean; placeholder: string; allowSpaces = false; description: string; @@ -252,6 +253,7 @@ export class SettingsEntryComponent this.name = this.name || this.state.tags.name; this.allowSpaces = this.allowSpaces || this.state.tags.uiAllowSpaces; this.required = this.required || !this.state.tags.uiOptional; + this.experimental = this.state.tags.experimental; } }