From a2e6225c5439867b1ac4dab4d18d8231e3f0ed7a Mon Sep 17 00:00:00 2001 From: songwongtp <16089160+songwongtp@users.noreply.github.com> Date: Mon, 16 Jan 2023 23:46:04 +0700 Subject: [PATCH 1/2] feat: add migrate on navbar --- CHANGELOG.md | 1 + src/lib/layout/Navbar.tsx | 6 ++++++ 2 files changed, 7 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 84c3af937..175d978ea 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -39,6 +39,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Features +- [#91](https://github.com/alleslabs/celatone-frontend/pull/91) Add migrate shortcut to the sidebar - [#75](https://github.com/alleslabs/celatone-frontend/pull/75) Add code-related contracts table to the code detail page - [#81](https://github.com/alleslabs/celatone-frontend/pull/81) Can scroll on side bar with fix deploy new contract button - [#86](https://github.com/alleslabs/celatone-frontend/pull/86) Add transactions table in contract details page diff --git a/src/lib/layout/Navbar.tsx b/src/lib/layout/Navbar.tsx index a0a79bbce..44c43541f 100644 --- a/src/lib/layout/Navbar.tsx +++ b/src/lib/layout/Navbar.tsx @@ -12,6 +12,7 @@ import { MdAdd, MdOutlineHistory, MdPublic, + MdReadMore, } from "react-icons/md"; import { CreateNewList } from "lib/components/modal"; @@ -57,6 +58,11 @@ const Navbar = observer(() => { slug: "/execute", icon: MdInput, }, + { + name: "Execute", + slug: "/execute", + icon: MdReadMore, + }, ], }, { From 345cbb9a7e04124ca70cf3cf5e0c98220fe41716 Mon Sep 17 00:00:00 2001 From: songwongtp <16089160+songwongtp@users.noreply.github.com> Date: Mon, 16 Jan 2023 23:50:51 +0700 Subject: [PATCH 2/2] fix: wording --- src/lib/layout/Navbar.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib/layout/Navbar.tsx b/src/lib/layout/Navbar.tsx index 44c43541f..2fbe109eb 100644 --- a/src/lib/layout/Navbar.tsx +++ b/src/lib/layout/Navbar.tsx @@ -59,8 +59,8 @@ const Navbar = observer(() => { icon: MdInput, }, { - name: "Execute", - slug: "/execute", + name: "Migrate", + slug: "/migrate", icon: MdReadMore, }, ],