diff --git a/ui/src/pageLayout/containers/Nav.tsx b/ui/src/pageLayout/containers/Nav.tsx index e6a5263194..b093b5ec51 100644 --- a/ui/src/pageLayout/containers/Nav.tsx +++ b/ui/src/pageLayout/containers/Nav.tsx @@ -61,6 +61,8 @@ class SideNav extends PureComponent { const dataExplorerLink = `${orgPrefix}/data-explorer` const tasksLink = `${orgPrefix}/tasks` const settingsLink = `${orgPrefix}/settings` + const feedbackLink = + 'https://docs.google.com/forms/d/e/1FAIpQLSdGJpnIZGotN1VFJPkgZEhrt4t4f6QY1lMgMSRUnMeN3FjCKA/viewform?usp=sf_link' return ( @@ -138,6 +140,19 @@ class SideNav extends PureComponent { )} active={getNavItemActivation(['settings'], location.pathname)} /> + ( + + Feedback + + )} + iconLink={className => ( + + + + )} + active={getNavItemActivation(['feedback'], location.pathname)} + /> )