Skip to content

Commit

Permalink
IMP-210: Add withdrawals external id filter (#180)
Browse files Browse the repository at this point in the history
  • Loading branch information
A77AY authored Aug 5, 2024
1 parent a3486bf commit 1ce9883
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,9 @@
<mat-label>{{ t('destinationID') }}</mat-label>
<input formControlName="destinationID" matInput type="text" />
</mat-form-field>
<mat-form-field>
<mat-label>{{ t('externalID') }}</mat-label>
<input aria-label="externalID" formControlName="externalID" matInput />
</mat-form-field>
</form>
</ng-container>
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ export class MainInfoFiltersComponent extends FormGroupSuperclass<MainInfoForm>
walletID: null,
identityID: null,
destinationID: null,
externalID: null,
});

constructor(private fb: FormBuilder) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,5 @@ export interface MainInfoForm {
walletID?: string;
identityID?: string;
destinationID?: string;
externalID?: string;
}
1 change: 1 addition & 0 deletions src/assets/i18n/wallet-section/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -187,6 +187,7 @@
"amountFrom": "Deposit amount from",
"amountTo": "Deposit amount to",
"destinationID": "Identifier of the funds recipient",
"externalID": "External ID'",
"identityID": "Identity ID",
"status": "Withdrawal status",
"walletID": "Wallet",
Expand Down
1 change: 1 addition & 0 deletions src/assets/i18n/wallet-section/ru.json
Original file line number Diff line number Diff line change
Expand Up @@ -187,6 +187,7 @@
"amountFrom": "Мин. сумма",
"amountTo": "Макс. сумма",
"destinationID": "Идентификатор приёмника средств",
"externalID": "Внешний идентификатор",
"identityID": "Идентификатор владельца",
"status": "Статус вывода",
"walletID": "Кошелек",
Expand Down

0 comments on commit 1ce9883

Please sign in to comment.