@for (conditionName of Object.keys(editConditions()); track conditionName) { @let conditionDetails = eventService.moduleConditions()[conditionName] || {};
{{ conditionName }} @if (showDescription[conditionName]) { } @else { }
@if (showDescription[conditionName]) {
}
@if (conditionDetails?.value) { @if (conditionDetails?.value?.length === 0) {

No values available for this condition.

} @else if (conditionDetails?.type === "multi") { @for (option of availableConditionValues()[conditionName]; track option) { {{ option }} } Select at least one value or remove the condition. } @else { @for (option of availableConditionValues()[conditionName]; track option) { {{ option }} } Select a value or remove the condition. } } @else { @switch (conditionDetails?.type) { @case ("int") { } @default { } } Enter a value or remove the condition. }
}