X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/35694e6fc2214c366f09ddd75c9910d91cd3ed20..fc3370a1203ae0b83a13ef6a958219cc722cfe75:/src/views-components/main-app-bar/help-menu.tsx diff --git a/src/views-components/main-app-bar/help-menu.tsx b/src/views-components/main-app-bar/help-menu.tsx index 2c56c85e27..26604228fc 100644 --- a/src/views-components/main-app-bar/help-menu.tsx +++ b/src/views-components/main-app-bar/help-menu.tsx @@ -3,19 +3,20 @@ // SPDX-License-Identifier: AGPL-3.0 import * as React from "react"; -import { MenuItem, Typography } from "@material-ui/core"; +import { MenuItem, Typography, ListSubheader } from "@material-ui/core"; import { DropdownMenu } from "~/components/dropdown-menu/dropdown-menu"; import { ImportContactsIcon, HelpIcon } from "~/components/icon/icon"; import { ArvadosTheme } from '~/common/custom-theme'; import { StyleRulesCallback, WithStyles, withStyles } from '@material-ui/core/styles'; -type CssRules = 'link' | 'icon' | 'title' | 'linkTitle' | 'linkContent'; +type CssRules = 'link' | 'icon' | 'title' | 'linkTitle'; const styles: StyleRulesCallback = (theme: ArvadosTheme) => ({ link: { textDecoration: 'none', color: 'inherit', width: '100%', + display: 'flex' }, icon: { width: '16px', @@ -30,9 +31,6 @@ const styles: StyleRulesCallback = (theme: ArvadosTheme) => ({ linkTitle: { marginLeft: theme.spacing.unit }, - linkContent: { - display: 'flex' - } }); const links = [ @@ -60,17 +58,13 @@ export const HelpMenu = withStyles(styles)( icon={} id="help-menu" title="Help"> -
  • - Help -
  • + Help { links.map(link => -
    - - {link.title} -
    + + {link.title}
    )