@for (credential of credentialSchemas(); track credential) {
{{ credential.label | i18n }} @if (credential.required) { * }
@switch (credential.type) { @case ('secret-input') {
} @case ('text-input') {
} @case ('select') { } @case ('radio') { @for (option of credential.options; track option) { {{ option.label | i18n }} } } @case (eParameterType.BOOLEAN) { } }
}