Skip to content

Commit 2c03d24

Browse files
committed
fix(data mapper): Fix issue where custom functions were being labels 'Collection'
1 parent 6a2e972 commit 2c03d24

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

libs/data-mapper/src/lib/utils/Function.Utils.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
import {
22
collectionBranding,
33
conversionBranding,
4+
customBranding,
45
dateTimeBranding,
56
logicalBranding,
67
mathBranding,
@@ -24,7 +25,7 @@ export const getFunctionBrandingForCategory = (functionCategory: FunctionCategor
2425
return collectionBranding;
2526
}
2627
case FunctionCategory.Custom: {
27-
return collectionBranding;
28+
return customBranding;
2829
}
2930
case FunctionCategory.DateTime: {
3031
return dateTimeBranding;

0 commit comments

Comments
 (0)