Skip to content

Commit

Permalink
fix: cr
Browse files Browse the repository at this point in the history
  • Loading branch information
pearmini committed Oct 19, 2022
1 parent b5d41a2 commit c9ecb5c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/component/axis.ts
Original file line number Diff line number Diff line change
Expand Up @@ -346,7 +346,7 @@ function getGridItems(
}

function titleContent(field: string | string[]): string {
return Array.isArray(field) ? field.join(', ') : '' + field;
return Array.isArray(field) ? field.join(', ') : `${field}`;
}

const ArcAxis = (options) => {
Expand Down

0 comments on commit c9ecb5c

Please sign in to comment.