summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian <sebasjm@gmail.com>2024-02-29 08:07:30 -0300
committerSebastian <sebasjm@gmail.com>2024-02-29 08:07:30 -0300
commit922d5b4d7aeed3f7c2f9eab1482f60d2fa50f234 (patch)
tree420a78925a19cd91bf8651ef3160ddc7d17e1a7f
parent97cabcd1ee7bc034aef305e4ef66a520bb0fc055 (diff)
downloadwallet-core-922d5b4d7aeed3f7c2f9eab1482f60d2fa50f234.tar.gz
wallet-core-922d5b4d7aeed3f7c2f9eab1482f60d2fa50f234.tar.bz2
wallet-core-922d5b4d7aeed3f7c2f9eab1482f60d2fa50f234.zip
applying changes suggested by codespell
-rw-r--r--packages/auditor-backoffice-ui/src/Application.tsx2
-rw-r--r--packages/auditor-backoffice-ui/src/components/form/JumpToElementById.tsx4
-rw-r--r--packages/auditor-backoffice-ui/src/paths/instance/deposit_confirmations/list/index.tsx2
-rw-r--r--packages/auditor-backoffice-ui/src/paths/instance/orders/list/index.tsx2
-rw-r--r--packages/auditor-backoffice-ui/src/paths/instance/products/list/index.tsx2
-rw-r--r--packages/auditor-backoffice-ui/src/paths/instance/templates/list/index.tsx2
6 files changed, 7 insertions, 7 deletions
diff --git a/packages/auditor-backoffice-ui/src/Application.tsx b/packages/auditor-backoffice-ui/src/Application.tsx
index 9e076d55c..3e5cfc273 100644
--- a/packages/auditor-backoffice-ui/src/Application.tsx
+++ b/packages/auditor-backoffice-ui/src/Application.tsx
@@ -77,7 +77,7 @@ function ApplicationStatusRoutes(): VNode {
notification={{
message: i18n.str`Checking the /config endpoint got authorization error`,
type: "ERROR",
- description: `The /config endpoint of the backend server should be accesible`,
+ description: `The /config endpoint of the backend server should be accessible`,
}}
/>
</Fragment>
diff --git a/packages/auditor-backoffice-ui/src/components/form/JumpToElementById.tsx b/packages/auditor-backoffice-ui/src/components/form/JumpToElementById.tsx
index 2ff23dfd3..a0e1d6ae4 100644
--- a/packages/auditor-backoffice-ui/src/components/form/JumpToElementById.tsx
+++ b/packages/auditor-backoffice-ui/src/components/form/JumpToElementById.tsx
@@ -3,7 +3,7 @@ import { useTranslationContext } from "@gnu-taler/web-util/browser";
import { h, VNode } from "preact";
import { useState } from "preact/hooks";
-export function JumpToElementById({ testIfExist, onSelect, palceholder, description }: { palceholder: TranslatedString, description: TranslatedString, testIfExist: (id: string) => Promise<any>, onSelect: (id: string) => void }): VNode {
+export function JumpToElementById({ testIfExist, onSelect, placeholder, description }: { placeholder: TranslatedString, description: TranslatedString, testIfExist: (id: string) => Promise<any>, onSelect: (id: string) => void }): VNode {
const { i18n } = useTranslationContext()
const [error, setError] = useState<string | undefined>(
@@ -35,7 +35,7 @@ export function JumpToElementById({ testIfExist, onSelect, palceholder, descript
type="text"
value={id ?? ""}
onChange={(e) => setId(e.currentTarget.value)}
- placeholder={palceholder}
+ placeholder={placeholder}
/>
{error && <p class="help is-danger">{error}</p>}
</div>
diff --git a/packages/auditor-backoffice-ui/src/paths/instance/deposit_confirmations/list/index.tsx b/packages/auditor-backoffice-ui/src/paths/instance/deposit_confirmations/list/index.tsx
index e3eda37f6..a99cfd2ef 100644
--- a/packages/auditor-backoffice-ui/src/paths/instance/deposit_confirmations/list/index.tsx
+++ b/packages/auditor-backoffice-ui/src/paths/instance/deposit_confirmations/list/index.tsx
@@ -85,7 +85,7 @@ export default function DepositConfirmationList({
testIfExist={getDepositConfirmation}
onSelect={onSelect}
description={i18n.str`jump to deposit_confirmation with the given serial ID`}
- palceholder={i18n.str`serial id`}
+ placeholder={i18n.str`serial id`}
/>
{deleting && (
diff --git a/packages/auditor-backoffice-ui/src/paths/instance/orders/list/index.tsx b/packages/auditor-backoffice-ui/src/paths/instance/orders/list/index.tsx
index 34c7d348a..92e714fb8 100644
--- a/packages/auditor-backoffice-ui/src/paths/instance/orders/list/index.tsx
+++ b/packages/auditor-backoffice-ui/src/paths/instance/orders/list/index.tsx
@@ -106,7 +106,7 @@ export default function OrderList({
testIfExist={getPaymentURL}
onSelect={onSelect}
description={i18n.str`jump to order with the given product ID`}
- palceholder={i18n.str`order id`}
+ placeholder={i18n.str`order id`}
/>
<ListPage
diff --git a/packages/auditor-backoffice-ui/src/paths/instance/products/list/index.tsx b/packages/auditor-backoffice-ui/src/paths/instance/products/list/index.tsx
index 942b5d0ac..34b21daa2 100644
--- a/packages/auditor-backoffice-ui/src/paths/instance/products/list/index.tsx
+++ b/packages/auditor-backoffice-ui/src/paths/instance/products/list/index.tsx
@@ -84,7 +84,7 @@ export default function ProductList({
testIfExist={getProduct}
onSelect={onSelect}
description={i18n.str`jump to product with the given product ID`}
- palceholder={i18n.str`product id`}
+ placeholder={i18n.str`product id`}
/>
<CardTable
diff --git a/packages/auditor-backoffice-ui/src/paths/instance/templates/list/index.tsx b/packages/auditor-backoffice-ui/src/paths/instance/templates/list/index.tsx
index b9767442f..c7927b772 100644
--- a/packages/auditor-backoffice-ui/src/paths/instance/templates/list/index.tsx
+++ b/packages/auditor-backoffice-ui/src/paths/instance/templates/list/index.tsx
@@ -89,7 +89,7 @@ export default function ListTemplates({
testIfExist={testTemplateExist}
onSelect={onSelect}
description={i18n.str`jump to template with the given template ID`}
- palceholder={i18n.str`template id`}
+ placeholder={i18n.str`template id`}
/>
<ListPage