summaryrefslogtreecommitdiff
path: root/packages/demobank-ui/src/components/Transactions/views.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'packages/demobank-ui/src/components/Transactions/views.tsx')
-rw-r--r--packages/demobank-ui/src/components/Transactions/views.tsx4
1 files changed, 4 insertions, 0 deletions
diff --git a/packages/demobank-ui/src/components/Transactions/views.tsx b/packages/demobank-ui/src/components/Transactions/views.tsx
index 53e437523..036cca4f7 100644
--- a/packages/demobank-ui/src/components/Transactions/views.tsx
+++ b/packages/demobank-ui/src/components/Transactions/views.tsx
@@ -136,6 +136,7 @@ export function ReadyView({
{item.negative ? i18n.str`to` : i18n.str`from`}{" "}
{!routeCreateWireTransfer ? item.counterpart :
<a
+ name={`transfer to ${item.counterpart}`}
href={routeCreateWireTransfer.url({
destination: item.counterpart,
})}
@@ -172,6 +173,7 @@ export function ReadyView({
<td class="hidden sm:table-cell px-3 py-3.5 text-sm text-gray-500">
{!routeCreateWireTransfer ? item.counterpart :
<a
+ name={`wire transfer to ${item.counterpart}`}
href={routeCreateWireTransfer.url({
destination: item.counterpart,
})}
@@ -199,6 +201,7 @@ export function ReadyView({
>
<div class="flex flex-1 justify-between sm:justify-end">
<button
+ name="first page"
class="relative disabled:bg-gray-100 disabled:text-gray-500 inline-flex items-center rounded-md bg-white px-3 py-2 text-sm font-semibold text-gray-900 ring-1 ring-inset ring-gray-300 hover:bg-gray-50 focus-visible:outline-offset-0"
disabled={!onPrev}
onClick={onPrev}
@@ -206,6 +209,7 @@ export function ReadyView({
<i18n.Translate>First page</i18n.Translate>
</button>
<button
+ name="next page"
class="relative disabled:bg-gray-100 disabled:text-gray-500 ml-3 inline-flex items-center rounded-md bg-white px-3 py-2 text-sm font-semibold text-gray-900 ring-1 ring-inset ring-gray-300 hover:bg-gray-50 focus-visible:outline-offset-0"
disabled={!onNext}
onClick={onNext}