diff --git a/app/views/rules/_rule.html.erb b/app/views/rules/_rule.html.erb index caaee500..1a10351f 100644 --- a/app/views/rules/_rule.html.erb +++ b/app/views/rules/_rule.html.erb @@ -5,7 +5,11 @@ <% if rule.conditions.any? %>
- If <%= rule.conditions.first.filter.label %> <%= rule.conditions.first.operator %> <%= rule.conditions.first.value_display %> + <% if rule.conditions.first.compound? %> + If <%= rule.conditions.first.sub_conditions.first.filter.label %> <%= rule.conditions.first.sub_conditions.first.operator %> <%= rule.conditions.first.sub_conditions.first.value_display %> + <% else %> + If <%= rule.conditions.first.filter.label %> <%= rule.conditions.first.operator %> <%= rule.conditions.first.value_display %> + <% end %> <% if rule.conditions.count > 1 %>