From 5e8a80001da235dd32a10bd2b2498db3bd4b8b3b Mon Sep 17 00:00:00 2001 From: Peer Richelsen Date: Fri, 14 Jan 2022 20:39:17 +0000 Subject: [PATCH] added roadmap link in dropdown (#1510) * added roadmap link in dropdown * Update public/static/locales/en/common.json Co-authored-by: Bailey Pumfleet Co-authored-by: Bailey Pumfleet --- components/Shell.tsx | 10 ++++++++++ public/static/locales/en/common.json | 3 ++- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/components/Shell.tsx b/components/Shell.tsx index dd128867..9cfa6ff6 100644 --- a/components/Shell.tsx +++ b/components/Shell.tsx @@ -9,6 +9,7 @@ import { LogoutIcon, PuzzleIcon, MoonIcon, + MapIcon, } from "@heroicons/react/solid"; import { signOut, useSession } from "next-auth/react"; import Link from "next/link"; @@ -466,6 +467,15 @@ function UserDropdown({ small }: { small?: boolean }) { {t("join_our_slack")} + + + {t("visit_roadmap")} + + diff --git a/public/static/locales/en/common.json b/public/static/locales/en/common.json index 81b50b97..6ffa158c 100644 --- a/public/static/locales/en/common.json +++ b/public/static/locales/en/common.json @@ -594,5 +594,6 @@ "saml_configuration_placeholder": "Please paste the SAML metadata from your Identity Provider here", "saml_configuration_update_failed": "SAML configuration update failed", "saml_configuration_delete_failed": "SAML configuration delete failed", - "saml_email_required": "Please enter an email so we can find your SAML Identity Provider" + "saml_email_required": "Please enter an email so we can find your SAML Identity Provider", + "visit_roadmap": "Roadmap" }