aboutsummaryrefslogtreecommitdiff
path: root/packages/merchant-backoffice-ui
diff options
context:
space:
mode:
authorSebastian <sebasjm@gmail.com>2023-01-27 15:50:19 -0300
committerSebastian <sebasjm@gmail.com>2023-01-27 15:50:19 -0300
commitab5defb6175402b31d22f688fc2891a266430abf (patch)
treeb330c556f152b5b143cacfe29269ee837e4c4a0f /packages/merchant-backoffice-ui
parent9645f93406c9424a02a8e140e693bd69039349b5 (diff)
downloadwallet-core-ab5defb6175402b31d22f688fc2891a266430abf.tar.xz
add new pages title
Diffstat (limited to 'packages/merchant-backoffice-ui')
-rw-r--r--packages/merchant-backoffice-ui/src/components/menu/index.tsx14
1 files changed, 14 insertions, 0 deletions
diff --git a/packages/merchant-backoffice-ui/src/components/menu/index.tsx b/packages/merchant-backoffice-ui/src/components/menu/index.tsx
index ccbd9442f..56573b8ca 100644
--- a/packages/merchant-backoffice-ui/src/components/menu/index.tsx
+++ b/packages/merchant-backoffice-ui/src/components/menu/index.tsx
@@ -44,6 +44,20 @@ function getInstanceTitle(path: string, id: string): string {
return `${id}: Transfers`;
case InstancePaths.transfers_new:
return `${id}: New transfer`;
+ case InstancePaths.webhooks_list:
+ return `${id}: Webhooks`;
+ case InstancePaths.webhooks_new:
+ return `${id}: New webhook`;
+ case InstancePaths.webhooks_update:
+ return `${id}: Update webhook`;
+ case InstancePaths.templates_new:
+ return `${id}: New template`;
+ case InstancePaths.templates_update:
+ return `${id}: Update template`;
+ case InstancePaths.templates_list:
+ return `${id}: Templates`;
+ case InstancePaths.templates_use:
+ return `${id}: Use template`;
default:
return "";
}