aboutsummaryrefslogtreecommitdiffstats
path: root/webui/src/Author.js
diff options
context:
space:
mode:
Diffstat (limited to 'webui/src/Author.js')
-rw-r--r--webui/src/Author.js25
1 files changed, 0 insertions, 25 deletions
diff --git a/webui/src/Author.js b/webui/src/Author.js
deleted file mode 100644
index 7bb1bf3c..00000000
--- a/webui/src/Author.js
+++ /dev/null
@@ -1,25 +0,0 @@
-import Tooltip from '@material-ui/core/Tooltip/Tooltip';
-import MAvatar from '@material-ui/core/Avatar';
-import React from 'react';
-
-const Author = ({ author, ...props }) => {
- if (!author.email) {
- return <span {...props}>{author.displayName}</span>;
- }
-
- return (
- <Tooltip title={author.email}>
- <span {...props}>{author.displayName}</span>
- </Tooltip>
- );
-};
-
-export const Avatar = ({ author, ...props }) => {
- if (author.avatarUrl) {
- return <MAvatar src={author.avatarUrl} {...props} />;
- }
-
- return <MAvatar {...props}>{author.displayName[0]}</MAvatar>;
-};
-
-export default Author;