diff --git a/src/app/components/AccountMenu/index.tsx b/src/app/components/AccountMenu/index.tsx index 83e9c46dd5..2502313f41 100644 --- a/src/app/components/AccountMenu/index.tsx +++ b/src/app/components/AccountMenu/index.tsx @@ -58,7 +58,7 @@ function AccountMenu({ showOptions = true }: Props) { } return ( -
+
@@ -93,8 +93,12 @@ function AccountMenu({ showOptions = true }: Props) {
+ + {tCommon("arrowkeys")} +
@@ -22,6 +25,7 @@ function BalanceBox({ className }: Props) { ) : ( <> + {tCommon("balance")} {balanceParts[0]}  {balanceParts[1]} diff --git a/src/app/components/Header/index.tsx b/src/app/components/Header/index.tsx index 5d3c0ade01..4939e29cf6 100644 --- a/src/app/components/Header/index.tsx +++ b/src/app/components/Header/index.tsx @@ -9,7 +9,9 @@ function Header({ children, headerLeft, headerRight }: Props) {
{headerLeft}
-

{children}

+

+ {children} +

{headerRight}
diff --git a/src/app/components/PublisherCard/index.tsx b/src/app/components/PublisherCard/index.tsx index f316829f50..df3baf9715 100644 --- a/src/app/components/PublisherCard/index.tsx +++ b/src/app/components/PublisherCard/index.tsx @@ -29,6 +29,7 @@ export default function PublisherCard({ } return (
+
{isSuccess +
{title}
); diff --git a/src/app/components/TransactionsTable/TransactionModal.tsx b/src/app/components/TransactionsTable/TransactionModal.tsx index 73aed0a54d..e7928ae77b 100644 --- a/src/app/components/TransactionsTable/TransactionModal.tsx +++ b/src/app/components/TransactionsTable/TransactionModal.tsx @@ -54,7 +54,7 @@ export default function TransactionModal({ contentLabel={"Transactions"} position="top" > -
+
{getTransactionType(transaction) == "outgoing" ? ( diff --git a/src/app/components/TransactionsTable/index.tsx b/src/app/components/TransactionsTable/index.tsx index a9ac5a8f7e..5f6a9b689b 100644 --- a/src/app/components/TransactionsTable/index.tsx +++ b/src/app/components/TransactionsTable/index.tsx @@ -54,6 +54,7 @@ export default function TransactionsTable({ return (
openDetails(tx)} diff --git a/src/app/components/UserMenu/index.tsx b/src/app/components/UserMenu/index.tsx index b1f40c2ceb..54973b858d 100644 --- a/src/app/components/UserMenu/index.tsx +++ b/src/app/components/UserMenu/index.tsx @@ -46,6 +46,9 @@ export default function UserMenu() { + + {tCommon("arrowkeys")} +
{ diff --git a/src/app/screens/Home/DefaultView/index.tsx b/src/app/screens/Home/DefaultView/index.tsx index 1f7380cb5e..aefe260923 100644 --- a/src/app/screens/Home/DefaultView/index.tsx +++ b/src/app/screens/Home/DefaultView/index.tsx @@ -4,7 +4,7 @@ import Loading from "@components/Loading"; import TransactionsTable from "@components/TransactionsTable"; import dayjs from "dayjs"; import relativeTime from "dayjs/plugin/relativeTime"; -import { FC, useEffect, useState } from "react"; +import { FC, KeyboardEvent, useEffect, useState } from "react"; import { useTranslation } from "react-i18next"; import { useNavigate } from "react-router-dom"; import BalanceBox from "~/app/components/BalanceBox"; @@ -89,7 +89,7 @@ const DefaultView: FC = (props) => { } return ( -
+
{props.renderPublisherWidget && !!props.lnDataFromCurrentTab?.length && ( )} @@ -171,7 +171,15 @@ const DefaultView: FC = (props) => { /> {!isLoading && transactions.length > 0 && ( -
+
{ + if (e.key === "Enter") { + handleViewAllLink("/transactions"); + } + }} + > handleViewAllLink("/transactions")} className="flex justify-center items-center mt-2" diff --git a/src/app/screens/LNURLPay/index.tsx b/src/app/screens/LNURLPay/index.tsx index e82f10f24c..bf392faddb 100644 --- a/src/app/screens/LNURLPay/index.tsx +++ b/src/app/screens/LNURLPay/index.tsx @@ -340,7 +340,10 @@ function LNURLPay() { })} /> {isMessage && ( -
+
{descriptionList.map(([dt, dd]) => ( <>
{dt}
diff --git a/src/app/screens/Receive/index.tsx b/src/app/screens/Receive/index.tsx index 9558692df9..7c1cf1230c 100644 --- a/src/app/screens/Receive/index.tsx +++ b/src/app/screens/Receive/index.tsx @@ -70,7 +70,7 @@ function Receive() {
<>
-
+
{loadingLightningAddress ? ( ) : ( diff --git a/src/app/screens/ReceiveInvoice/index.tsx b/src/app/screens/ReceiveInvoice/index.tsx index 5460dc8472..99038fab47 100644 --- a/src/app/screens/ReceiveInvoice/index.tsx +++ b/src/app/screens/ReceiveInvoice/index.tsx @@ -142,7 +142,11 @@ function ReceiveInvoice() { {!paid && ( <>
-
+
+ {t("qrcode_invoice")}