Skip to content

Commit

Permalink
Fix error
Browse files Browse the repository at this point in the history
  • Loading branch information
keisuke-umezawa committed Nov 28, 2024
1 parent 1305bf5 commit 5690c96
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tslib/react/src/utils/graph.ts
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ const getAxisInfoForCategoricalParams = (
)

const indices = distribution.choices
.map((c) => c?.toString() ?? "null")
.map((c) => c?.value ?? "null")
.sort((a, b) =>
a.toLowerCase() < b.toLowerCase()
? -1
Expand Down

0 comments on commit 5690c96

Please sign in to comment.