gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[taler-wallet-core] branch master updated: applying changes suggested by


From: gnunet
Subject: [taler-wallet-core] branch master updated: applying changes suggested by codespell
Date: Thu, 29 Feb 2024 12:07:36 +0100

This is an automated email from the git hooks/post-receive script.

sebasjm pushed a commit to branch master
in repository wallet-core.

The following commit(s) were added to refs/heads/master by this push:
     new 922d5b4d7 applying changes suggested by codespell
922d5b4d7 is described below

commit 922d5b4d7aeed3f7c2f9eab1482f60d2fa50f234
Author: Sebastian <sebasjm@gmail.com>
AuthorDate: Thu Feb 29 08:07:30 2024 -0300

    applying changes suggested by codespell
---
 packages/auditor-backoffice-ui/src/Application.tsx                    | 2 +-
 .../auditor-backoffice-ui/src/components/form/JumpToElementById.tsx   | 4 ++--
 .../src/paths/instance/deposit_confirmations/list/index.tsx           | 2 +-
 .../auditor-backoffice-ui/src/paths/instance/orders/list/index.tsx    | 2 +-
 .../auditor-backoffice-ui/src/paths/instance/products/list/index.tsx  | 2 +-
 .../auditor-backoffice-ui/src/paths/instance/templates/list/index.tsx | 2 +-
 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

-- 
To stop receiving notification emails like this one, please contact
gnunet@gnunet.org.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]