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 and GITHUB_USERNAME committed Feb 7, 2023
1 parent 8c3c54e commit af2e655
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 af2e655

Please sign in to comment.