File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -673,8 +673,8 @@ function MoneyRequestConfirmationList({
673673 touchableInputWrapperStyle = { [ styles . ml3 ] }
674674 onFormatAmount = { convertToDisplayStringWithoutCurrency }
675675 onAmountChange = { ( value : string ) => onSplitShareChange ( participantOption . accountID ?? CONST . DEFAULT_NUMBER_ID , Number ( value ) ) }
676- maxLength = { formattedTotalAmount . length }
677- contentWidth = { formattedTotalAmount . length * 8 }
676+ maxLength = { formattedTotalAmount . length + 1 }
677+ contentWidth = { ( formattedTotalAmount . length + 1 ) * 8 }
678678 />
679679 ) ,
680680 } ) ) ;
Original file line number Diff line number Diff line change @@ -139,8 +139,8 @@ function SplitListItem<TItem extends ListItem>({
139139 inputStyle = { [ styles . optionRowAmountInput ] }
140140 containerStyle = { [ styles . textInputContainer ] }
141141 touchableInputWrapperStyle = { [ styles . ml3 ] }
142- maxLength = { formattedOriginalAmount . length }
143- contentWidth = { formattedOriginalAmount . length * 8 }
142+ maxLength = { formattedOriginalAmount . length + 1 }
143+ contentWidth = { ( formattedOriginalAmount . length + 1 ) * 8 }
144144 />
145145 </ View >
146146 < View style = { [ styles . popoverMenuIcon , styles . pointerEventsAuto ] } >
You can’t perform that action at this time.
0 commit comments