Skip to content

Commit cdb0bde

Browse files
lukaw3dlukaw3d
authored andcommitted
Label ParaTime inputs
1 parent bd04431 commit cdb0bde

4 files changed

Lines changed: 4 additions & 0 deletions

File tree

src/app/pages/ParaTimesPage/TransactionAmount/__tests__/__snapshots__/index.test.tsx.snap

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -653,6 +653,7 @@ exports[`<TransactionAmount /> should render component 1`] = `
653653
class="c9"
654654
>
655655
<input
656+
aria-label="Amount"
656657
autocomplete="off"
657658
class="c10"
658659
inputmode="decimal"

src/app/pages/ParaTimesPage/TransactionAmount/index.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -177,6 +177,7 @@ export const TransactionAmount = () => {
177177
]}
178178
>
179179
<TextInput
180+
aria-label={t('common.amount', 'Amount')}
180181
disabled={disabled}
181182
inputMode="decimal"
182183
name="amount"

src/app/pages/ParaTimesPage/TransactionRecipient/__tests__/__snapshots__/index.test.tsx.snap

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -395,6 +395,7 @@ exports[`<TransactionRecipient /> should render component 1`] = `
395395
class="c8"
396396
>
397397
<input
398+
aria-label="Recipient"
398399
autocomplete="off"
399400
class="c9"
400401
name="recipient"

src/app/pages/ParaTimesPage/TransactionRecipient/index.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -122,6 +122,7 @@ export const TransactionRecipient = () => {
122122
}
123123
>
124124
<TextInput
125+
aria-label={t('account.sendTransaction.recipient', 'Recipient')}
125126
name="recipient"
126127
suggestions={usesOasisAddress ? [] : evmAccounts.map(acc => acc.ethAddress)}
127128
placeholder={usesOasisAddress ? accountAddress : t('paraTimes.recipient.placeholder', '0x...')}

0 commit comments

Comments
 (0)