@switch (type()) {
@case (eParameterTypeEnum.STRING) {
@if (required()) {
*
}
{{ schema().label | i18n }}
@if (schema().description) {
}
}
@case (eParameterTypeEnum.NUMBER) {
@if (required()) {
*
}
{{ schema().label | i18n }}
@if (schema().description) {
}
}
@case (eParameterTypeEnum.SECRET_INPUT) {
@if (required()) {
*
}
{{ schema().label | i18n }}
@if (schema().description) {
}
}
@case (eParameterTypeEnum.SELECT) {
@if (required()) {
*
}
{{ schema().label | i18n }}
@if (schema().description) {
}
}
@case (eParameterTypeEnum.BOOLEAN) {
@if (required()) {
*
}
@if (schema().description) {
}
}
}
@if (help(); as help) {
{{ help.title | i18n }}
}