web/admin: fix default for codemirror
Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org>
This commit is contained in:
		@ -121,7 +121,7 @@ export class GroupForm extends Form<Group> {
 | 
				
			|||||||
            <ak-form-element-horizontal
 | 
					            <ak-form-element-horizontal
 | 
				
			||||||
                label=${t`Attributes`}
 | 
					                label=${t`Attributes`}
 | 
				
			||||||
                name="attributes">
 | 
					                name="attributes">
 | 
				
			||||||
                <ak-codemirror mode="yaml" value="${YAML.stringify(this.group?.attributes)}">
 | 
					                <ak-codemirror mode="yaml" value="${YAML.stringify(first(this.group?.attributes, {}))}">
 | 
				
			||||||
                </ak-codemirror>
 | 
					                </ak-codemirror>
 | 
				
			||||||
                <p class="pf-c-form__helper-text">${t`Set custom attributes using YAML or JSON.`}</p>
 | 
					                <p class="pf-c-form__helper-text">${t`Set custom attributes using YAML or JSON.`}</p>
 | 
				
			||||||
            </ak-form-element-horizontal>
 | 
					            </ak-form-element-horizontal>
 | 
				
			||||||
 | 
				
			|||||||
@ -65,7 +65,7 @@ export class ServiceConnectionKubernetesForm extends Form<KubernetesServiceConne
 | 
				
			|||||||
            <ak-form-element-horizontal
 | 
					            <ak-form-element-horizontal
 | 
				
			||||||
                label=${t`Kubeconfig`}
 | 
					                label=${t`Kubeconfig`}
 | 
				
			||||||
                name="kubeconfig">
 | 
					                name="kubeconfig">
 | 
				
			||||||
                <ak-codemirror mode="yaml" value="${YAML.stringify(this.sc?.kubeconfig)}">
 | 
					                <ak-codemirror mode="yaml" value="${YAML.stringify(first(this.sc?.kubeconfig, {}))}">
 | 
				
			||||||
                </ak-codemirror>
 | 
					                </ak-codemirror>
 | 
				
			||||||
                <p class="pf-c-form__helper-text">${t`Set custom attributes using YAML or JSON.`}</p>
 | 
					                <p class="pf-c-form__helper-text">${t`Set custom attributes using YAML or JSON.`}</p>
 | 
				
			||||||
            </ak-form-element-horizontal>
 | 
					            </ak-form-element-horizontal>
 | 
				
			||||||
 | 
				
			|||||||
@ -7,6 +7,7 @@ import { Form } from "../../../elements/forms/Form";
 | 
				
			|||||||
import "../../../elements/forms/HorizontalFormElement";
 | 
					import "../../../elements/forms/HorizontalFormElement";
 | 
				
			||||||
import "../../../elements/CodeMirror";
 | 
					import "../../../elements/CodeMirror";
 | 
				
			||||||
import YAML from "yaml";
 | 
					import YAML from "yaml";
 | 
				
			||||||
 | 
					import { first } from "../../../utils";
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@customElement("ak-invitation-form")
 | 
					@customElement("ak-invitation-form")
 | 
				
			||||||
export class InvitationForm extends Form<Invitation> {
 | 
					export class InvitationForm extends Form<Invitation> {
 | 
				
			||||||
@ -46,7 +47,7 @@ export class InvitationForm extends Form<Invitation> {
 | 
				
			|||||||
            <ak-form-element-horizontal
 | 
					            <ak-form-element-horizontal
 | 
				
			||||||
                label=${t`Attributes`}
 | 
					                label=${t`Attributes`}
 | 
				
			||||||
                name="fixedData">
 | 
					                name="fixedData">
 | 
				
			||||||
                <ak-codemirror mode="yaml" value="${YAML.stringify(this.invitation?.fixedData)}">
 | 
					                <ak-codemirror mode="yaml" value="${YAML.stringify(first(this.invitation?.fixedData, {}))}">
 | 
				
			||||||
                </ak-codemirror>
 | 
					                </ak-codemirror>
 | 
				
			||||||
                <p class="pf-c-form__helper-text">${t`Optional data which is loaded into the flow's 'prompt_data' context variable. YAML or JSON.`}</p>
 | 
					                <p class="pf-c-form__helper-text">${t`Optional data which is loaded into the flow's 'prompt_data' context variable. YAML or JSON.`}</p>
 | 
				
			||||||
            </ak-form-element-horizontal>
 | 
					            </ak-form-element-horizontal>
 | 
				
			||||||
 | 
				
			|||||||
@ -72,7 +72,7 @@ export class UserForm extends Form<User> {
 | 
				
			|||||||
            <ak-form-element-horizontal
 | 
					            <ak-form-element-horizontal
 | 
				
			||||||
                label=${t`Attributes`}
 | 
					                label=${t`Attributes`}
 | 
				
			||||||
                name="attributes">
 | 
					                name="attributes">
 | 
				
			||||||
                <ak-codemirror mode="yaml" value="${YAML.stringify(this.user?.attributes)}">
 | 
					                <ak-codemirror mode="yaml" value="${YAML.stringify(first(this.user?.attributes, {}))}">
 | 
				
			||||||
                </ak-codemirror>
 | 
					                </ak-codemirror>
 | 
				
			||||||
                <p class="pf-c-form__helper-text">${t`Set custom attributes using YAML or JSON.`}</p>
 | 
					                <p class="pf-c-form__helper-text">${t`Set custom attributes using YAML or JSON.`}</p>
 | 
				
			||||||
            </ak-form-element-horizontal>
 | 
					            </ak-form-element-horizontal>
 | 
				
			||||||
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user