X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/6dfcd99cab6ea26ef947bdc2c90020ccea1c925b..7be9038d988e4dd566536be646769f720b1ae04c:/src/views/my-account-panel/my-account-panel-root.tsx diff --git a/src/views/my-account-panel/my-account-panel-root.tsx b/src/views/my-account-panel/my-account-panel-root.tsx index 7dcbe09a57..e84b3b6484 100644 --- a/src/views/my-account-panel/my-account-panel-root.tsx +++ b/src/views/my-account-panel/my-account-panel-root.tsx @@ -6,7 +6,6 @@ import * as React from 'react'; import { Field, InjectedFormProps, WrappedFieldProps } from "redux-form"; import { TextField } from "~/components/text-field/text-field"; import { NativeSelectField } from "~/components/select-field/select-field"; -import { DetailsAttribute } from '~/components/details-attribute/details-attribute'; import { StyleRulesCallback, WithStyles, @@ -22,7 +21,7 @@ import { ArvadosTheme } from '~/common/custom-theme'; import { User } from "~/models/user"; import { MY_ACCOUNT_VALIDATION } from "~/validators/validators"; -type CssRules = 'root' | 'gridItem' | 'label' | 'title' | 'actions' | 'link'; +type CssRules = 'root' | 'gridItem' | 'label' | 'title' | 'actions'; const styles: StyleRulesCallback = (theme: ArvadosTheme) => ({ root: { @@ -40,24 +39,13 @@ const styles: StyleRulesCallback = (theme: ArvadosTheme) => ({ marginBottom: theme.spacing.unit * 3, color: theme.palette.grey["600"] }, - link: { - lineHeight:'2.1', - whiteSpace: 'nowrap', - fontSize: '1rem', - color: theme.palette.primary.main, - '&:hover': { - cursor: 'pointer' - } - }, actions: { display: 'flex', justifyContent: 'flex-end' } }); -export interface MyAccountPanelRootActionProps { - openLinkAccount: () => void; - } +export interface MyAccountPanelRootActionProps { } export interface MyAccountPanelRootDataProps { isPristine: boolean; @@ -76,7 +64,7 @@ const RoleTypes = [ { key: 'Other', value: 'Other' } ]; -type MyAccountPanelRootProps = InjectedFormProps & MyAccountPanelRootActionProps & MyAccountPanelRootDataProps & WithStyles; +type MyAccountPanelRootProps = InjectedFormProps & MyAccountPanelRootDataProps & WithStyles; type LocalClusterProp = { localCluster: string }; const renderField: React.ComponentType = ({ input, localCluster }) => ( @@ -84,21 +72,12 @@ const renderField: React.ComponentType = ( ); export const MyAccountPanelRoot = withStyles(styles)( - ({ classes, isValid, handleSubmit, reset, isPristine, invalid, submitting, localCluster, openLinkAccount}: MyAccountPanelRootProps) => { + ({ classes, isValid, handleSubmit, reset, isPristine, invalid, submitting, localCluster }: MyAccountPanelRootProps) => { return - - - - Logged in as - - - - openLinkAccount()}> - - - - + + Logged in as +