Skip to content

Commit

Permalink
fix(core): error in the expression caused by missing parentheses
Browse files Browse the repository at this point in the history
  • Loading branch information
kjk7034 committed Jan 11, 2024
1 parent 3caefc4 commit b941c67
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -401,7 +401,7 @@ export const NumberInput = factory<NumberInputFactory>((_props, ref) => {
__staticSelector="NumberInput"
decimalScale={allowDecimal ? decimalScale : 0}
onKeyDown={handleKeyDown}
rightSectionPointerEvents={rightSectionPointerEvents ?? disabled ? 'none' : undefined}
rightSectionPointerEvents={rightSectionPointerEvents ?? (disabled ? 'none' : undefined)}
rightSectionWidth={rightSectionWidth ?? `var(--ni-right-section-width-${size || 'sm'})`}
allowLeadingZeros={allowLeadingZeros}
onBlur={(event) => {
Expand Down

0 comments on commit b941c67

Please sign in to comment.