mirror of
https://github.com/Unleash/unleash.git
synced 2025-01-25 00:07:47 +01:00
1568 fix datadog type/value order in addon (#1569)
This commit is contained in:
parent
ce2714713a
commit
e67c0d115b
@ -29,7 +29,7 @@ export default class DatadogAddon extends Addon {
|
|||||||
|
|
||||||
const { tags: eventTags } = event;
|
const { tags: eventTags } = event;
|
||||||
const tags =
|
const tags =
|
||||||
eventTags && eventTags.map((tag) => `${tag.value}:${tag.type}`);
|
eventTags && eventTags.map((tag) => `${tag.type}:${tag.value}`);
|
||||||
const body = {
|
const body = {
|
||||||
text: `%%% \n ${text} \n %%% `,
|
text: `%%% \n ${text} \n %%% `,
|
||||||
title: 'Unleash notification update',
|
title: 'Unleash notification update',
|
||||||
|
Loading…
Reference in New Issue
Block a user