1
0
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:
Connor Teague 2022-05-06 02:07:19 -05:00 committed by GitHub
parent ce2714713a
commit e67c0d115b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -29,7 +29,7 @@ export default class DatadogAddon extends Addon {
const { tags: eventTags } = event;
const tags =
eventTags && eventTags.map((tag) => `${tag.value}:${tag.type}`);
eventTags && eventTags.map((tag) => `${tag.type}:${tag.value}`);
const body = {
text: `%%% \n ${text} \n %%% `,
title: 'Unleash notification update',