summaryrefslogtreecommitdiff
path: root/packages/frontend/src/components/menu/index.tsx
diff options
context:
space:
mode:
authorSebastian <sebasjm@gmail.com>2021-06-10 23:51:14 -0300
committerSebastian <sebasjm@gmail.com>2021-06-10 23:55:04 -0300
commitc9c04a14be4bf9a70cd1730d2e8b5aa8bd38f032 (patch)
treec59f0b0906f97ffe2c8394cfb963c778b82ad244 /packages/frontend/src/components/menu/index.tsx
parent352e23dbbc9a83b522964f3ba7fb06295d38c835 (diff)
downloadmerchant-backoffice-c9c04a14be4bf9a70cd1730d2e8b5aa8bd38f032.tar.gz
merchant-backoffice-c9c04a14be4bf9a70cd1730d2e8b5aa8bd38f032.tar.bz2
merchant-backoffice-c9c04a14be4bf9a70cd1730d2e8b5aa8bd38f032.zip
lots of fixes in same commit
added tooltips in buttons and fix tooltips styles in corner cases added a start for required fields token -> access token fixed query product list refactor instance update/create form some more comments from christian email
Diffstat (limited to 'packages/frontend/src/components/menu/index.tsx')
-rw-r--r--packages/frontend/src/components/menu/index.tsx3
1 files changed, 0 insertions, 3 deletions
diff --git a/packages/frontend/src/components/menu/index.tsx b/packages/frontend/src/components/menu/index.tsx
index 31826ed..3a7ccab 100644
--- a/packages/frontend/src/components/menu/index.tsx
+++ b/packages/frontend/src/components/menu/index.tsx
@@ -27,15 +27,12 @@ import { Sidebar } from "./SideBar";
function getInstanceTitle(path: string, id: string): string {
switch (path) {
- // case InstancePaths.details: return `${id}`
case InstancePaths.update: return `${id}: Settings`
case InstancePaths.order_list: return `${id}: Orders`
case InstancePaths.order_new: return `${id}: New order`
- case InstancePaths.order_details: return `${id}: Detail of the order`
case InstancePaths.product_list: return `${id}: Products`
case InstancePaths.product_new: return `${id}: New product`
case InstancePaths.product_update: return `${id}: Update product`
- case InstancePaths.reserves_details: return `${id}: Detail of a reserve`
case InstancePaths.reserves_new: return `${id}: New reserve`
case InstancePaths.reserves_list: return `${id}: Reserves`
case InstancePaths.transfers_list: return `${id}: Transfers`