aboutsummaryrefslogtreecommitdiff
path: root/packages/merchant-backoffice-ui/src/paths/settings/index.tsx
diff options
context:
space:
mode:
authorÖzgür Kesim <oec-taler@kesim.org>2023-09-12 13:52:55 +0200
committerÖzgür Kesim <oec-taler@kesim.org>2023-09-12 13:52:55 +0200
commit121a6da78504204ddf34bf05b5136e09fab0261e (patch)
treecd220a6e7168e9888b0f83219242f23744fa2cc2 /packages/merchant-backoffice-ui/src/paths/settings/index.tsx
parent5495551071a3fdc36c38deb4c1cf6f4aa5b98bd4 (diff)
parentee8993f11cf81721cc30b4473e40124c2fee0dff (diff)
Merge branch 'master' into age-withdraw
Diffstat (limited to 'packages/merchant-backoffice-ui/src/paths/settings/index.tsx')
-rw-r--r--packages/merchant-backoffice-ui/src/paths/settings/index.tsx18
1 files changed, 13 insertions, 5 deletions
diff --git a/packages/merchant-backoffice-ui/src/paths/settings/index.tsx b/packages/merchant-backoffice-ui/src/paths/settings/index.tsx
index 0d514f2df..87bd2fa39 100644
--- a/packages/merchant-backoffice-ui/src/paths/settings/index.tsx
+++ b/packages/merchant-backoffice-ui/src/paths/settings/index.tsx
@@ -13,7 +13,7 @@ function getBrowserLang(): string | undefined {
return undefined;
}
-export function Settings(): VNode {
+export function Settings({ onClose }: { onClose?: () => void }): VNode {
const { i18n } = useTranslationContext()
const borwserLang = getBrowserLang()
const { update } = useLang()
@@ -94,11 +94,19 @@ export function Settings(): VNode {
/>
</FormProvider>
</div>
-
-
</div>
<div class="column" />
</div>
- </section>
- </div>
+ </section >
+ {onClose &&
+ <section class="section is-main-section">
+ <button
+ class="button"
+ onClick={onClose}
+ >
+ <i18n.Translate>Close</i18n.Translate>
+ </button>
+ </section>
+ }
+ </div >
} \ No newline at end of file