mirror of
				https://github.com/Unleash/unleash.git
				synced 2025-10-27 11:02:16 +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 && 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',
 | 
			
		||||
 | 
			
		||||
		Loading…
	
		Reference in New Issue
	
	Block a user