Browse Source

Mattermost with Slack integration: payload fields must be strings not integers, or else there will be a bunch of JS errors on Mattermost web UI.

pull/60/head
Pēteris Caune 9 years ago
parent
commit
ba357b045c
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      templates/integrations/slack_message.json

+ 1
- 1
templates/integrations/slack_message.json View File

@ -36,7 +36,7 @@
{% endif %}
{
"title": "Total Pings",
"value": {{ check.n_pings }},
"value": "{{ check.n_pings }}",
"short": true
}
]


Loading…
Cancel
Save