reactdatagrid icon indicating copy to clipboard operation
reactdatagrid copied to clipboard

🐛 Bug caused by Typo in reactdatagrid/community-edition/packages/NumericInput/src /NumberInput.tsx

Open LeadDreamer opened this issue 1 year ago • 1 comments

  • what edition are you using - community / enterprise
  • version for @inovua/reactdatagrid-communityor @inovua/reactdatagrid-enterprise -

Relevant code or config

What you did:

What happened:

Reproduction repository:

Problem description:

Suggested solution:

LeadDreamer avatar Mar 04 '24 18:03 LeadDreamer

Community repository Specifically reactdatagrid/community-edition/packages/NumericInput/src /NumberInput.tsx Lines 298-302 let min = props.mim; if (min === undefined && !props.allowNegative) { min = 0; }

NOTE: first line defines min as props.mim - note the "m". There is no other reference in the repository to props.mim or mim

Probably affects use of the allowNegative prop

LeadDreamer avatar Mar 04 '24 18:03 LeadDreamer