diff options
author | crupest <crupest@outlook.com> | 2020-12-19 21:35:47 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2020-12-19 21:35:47 +0800 |
commit | a7ef774136682d6af13d4ece202a0bb94508c36b (patch) | |
tree | e93e23eb4481ffd6a84425544e8a4f7bff69f0f6 /FrontEnd/src/app/views/admin/AdminNav.tsx | |
parent | 0751d07c55dd26a8bc825e695bfa6c6442857b0b (diff) | |
download | timeline-a7ef774136682d6af13d4ece202a0bb94508c36b.tar.gz timeline-a7ef774136682d6af13d4ece202a0bb94508c36b.tar.bz2 timeline-a7ef774136682d6af13d4ece202a0bb94508c36b.zip |
feat: Remove highlight from admin.
Diffstat (limited to 'FrontEnd/src/app/views/admin/AdminNav.tsx')
-rw-r--r-- | FrontEnd/src/app/views/admin/AdminNav.tsx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/FrontEnd/src/app/views/admin/AdminNav.tsx b/FrontEnd/src/app/views/admin/AdminNav.tsx index f376beda..47e2138f 100644 --- a/FrontEnd/src/app/views/admin/AdminNav.tsx +++ b/FrontEnd/src/app/views/admin/AdminNav.tsx @@ -29,12 +29,12 @@ const AdminNav: React.FC = () => { </Nav.Item> <Nav.Item> <Nav.Link - active={name === "highlighttimelines"} + active={name === "more"} onClick={() => { - toggle("highlighttimelines"); + toggle("more"); }} > - {t("admin:nav.highlightTimelines")} + {t("admin:nav.more")} </Nav.Link> </Nav.Item> </Nav> |