Skip to content

Commit

Permalink
[CLDN-1620] Making rendering use advanced type (#197)
Browse files Browse the repository at this point in the history
  • Loading branch information
cccs-RyanS authored Aug 17, 2022
1 parent 685d621 commit bbec5b2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ export default function transformProps(chartProps: CccsGridChartProps) {
// @ts-ignore
const name = column.column_name;
// @ts-ignore
columnMap[name] = ((column.business_type as string) ?? '').toUpperCase();
columnMap[name] = ((column.advanced_data_type as string) ?? '').toUpperCase();
return columnMap;
}, columnAdvancedTypeMap);

Expand Down

0 comments on commit bbec5b2

Please sign in to comment.