Skip to content

Commit

Permalink
Fix incorrect method reference
Browse files Browse the repository at this point in the history
  • Loading branch information
pvannierop committed May 25, 2022
1 parent 4ef9490 commit fd1d5e8
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/pages/studyView/charts/barChart/CustomBinsModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,9 @@ export default class CustomBinsModal extends React.Component<
((event.currentTarget as unknown) as HTMLInputElement).value =
'';
} else {
this.updateBinSize(Number(value));
this.updateAnchorValue(
Number(value)
);
}
}}
/>
Expand Down

0 comments on commit fd1d5e8

Please sign in to comment.