From bce4d095e16fb33d181b29aa1d3476037c0c873a Mon Sep 17 00:00:00 2001 From: Quentin Gliech Date: Wed, 16 Feb 2022 10:32:20 +0100 Subject: webui: replace React imports --- webui/src/components/Author.tsx | 1 - 1 file changed, 1 deletion(-) (limited to 'webui/src/components/Author.tsx') diff --git a/webui/src/components/Author.tsx b/webui/src/components/Author.tsx index 593b5d36..b9f95aae 100644 --- a/webui/src/components/Author.tsx +++ b/webui/src/components/Author.tsx @@ -1,4 +1,3 @@ -import React from 'react'; import { Link as RouterLink } from 'react-router-dom'; import MAvatar from '@material-ui/core/Avatar'; -- cgit From fd17d6dd1f7c9fbda4d3c3e2c2eb232bd9086fab Mon Sep 17 00:00:00 2001 From: Quentin Gliech Date: Tue, 22 Feb 2022 21:50:14 +0100 Subject: webui: upgrade Material UI --- webui/src/components/Author.tsx | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) (limited to 'webui/src/components/Author.tsx') diff --git a/webui/src/components/Author.tsx b/webui/src/components/Author.tsx index b9f95aae..92e14d40 100644 --- a/webui/src/components/Author.tsx +++ b/webui/src/components/Author.tsx @@ -1,9 +1,8 @@ +import MAvatar from '@mui/material/Avatar'; +import Link from '@mui/material/Link'; +import Tooltip from '@mui/material/Tooltip/Tooltip'; import { Link as RouterLink } from 'react-router-dom'; -import MAvatar from '@material-ui/core/Avatar'; -import Link from '@material-ui/core/Link'; -import Tooltip from '@material-ui/core/Tooltip/Tooltip'; - import { AuthoredFragment } from '../graphql/fragments.generated'; type Props = AuthoredFragment & { @@ -14,7 +13,12 @@ type Props = AuthoredFragment & { const Author = ({ author, ...props }: Props) => { return ( - + {author.displayName} -- cgit