Skip to content

Commit b37e87e

Browse files
authored
Merge pull request #5513 from thesahindia/thesahindia/ui-ux/vba-flow-inputs
use phone-pad
2 parents ee98b48 + aafc273 commit b37e87e

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

src/pages/ReimbursementAccount/CompanyStep.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -215,6 +215,7 @@ class CompanyStep extends React.Component {
215215
<ExpensiTextInput
216216
label={this.props.translate('common.zip')}
217217
containerStyles={[styles.mt4]}
218+
keyboardType={CONST.KEYBOARD_TYPE.PHONE_PAD}
218219
onChangeText={value => this.clearErrorAndSetValue('addressZipCode', value)}
219220
value={this.state.addressZipCode}
220221
errorText={this.getErrorText('addressZipCode')}

src/pages/ReimbursementAccount/IdentityForm.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ import withLocalize, {withLocalizePropTypes} from '../../components/withLocalize
88
import {translateLocal} from '../../libs/translate';
99
import {hideBankAccountErrors} from '../../libs/actions/BankAccounts';
1010
import Text from '../../components/Text';
11+
import CONST from '../../CONST';
1112

1213
const propTypes = {
1314
/** Style for wrapping View */
@@ -118,6 +119,7 @@ const IdentityForm = ({
118119
<ExpensiTextInput
119120
label={`${translate('common.ssnLast4')}`}
120121
containerStyles={[styles.mt4]}
122+
keyboardType={CONST.KEYBOARD_TYPE.PHONE_PAD}
121123
value={ssnLast4}
122124
onChangeText={(val) => {
123125
if (error === translateLocal('bankAccount.error.ssnLast4')) {
@@ -172,6 +174,7 @@ const IdentityForm = ({
172174
<ExpensiTextInput
173175
label={translate('common.zip')}
174176
containerStyles={[styles.mt4]}
177+
keyboardType={CONST.KEYBOARD_TYPE.PHONE_PAD}
175178
value={zipCode}
176179
onChangeText={(val) => {
177180
if (error === translateLocal('bankAccount.error.zipCode')) {

0 commit comments

Comments
 (0)