diff --git a/assets/templates/alertgroup.html b/assets/templates/alertgroup.html index 45a2ca5f5..f2e5f0229 100644 --- a/assets/templates/alertgroup.html +++ b/assets/templates/alertgroup.html @@ -140,6 +140,15 @@ <%- silence.endsAt %> + <% _.each(silence.matchers, function(matcher) { %> +
+ <% var matcherOperator = "=" %> + <% if (matcher.isRegex) { %> + <% matcherOperator = "=~" %> + <% } %> + <%- matcher.name %><%- matcherOperator %><%- matcher.value %> +
+ <% }) %>