Skip to content

Commit

Permalink
fix(data mapper): Fix issue where custom functions were being labels …
Browse files Browse the repository at this point in the history
…'Collection'
  • Loading branch information
hartra344 committed Mar 17, 2024
1 parent 6a2e972 commit 2c03d24
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion libs/data-mapper/src/lib/utils/Function.Utils.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import {
collectionBranding,
conversionBranding,
customBranding,
dateTimeBranding,
logicalBranding,
mathBranding,
Expand All @@ -24,7 +25,7 @@ export const getFunctionBrandingForCategory = (functionCategory: FunctionCategor
return collectionBranding;
}
case FunctionCategory.Custom: {
return collectionBranding;
return customBranding;
}
case FunctionCategory.DateTime: {
return dateTimeBranding;
Expand Down

0 comments on commit 2c03d24

Please sign in to comment.