diff options
author | Michael Muré <batolettre@gmail.com> | 2021-03-19 17:04:59 +0100 |
---|---|---|
committer | Michael Muré <batolettre@gmail.com> | 2021-03-19 17:04:59 +0100 |
commit | 07e1c45cd70554630640bb1ea25968078a36fd6c (patch) | |
tree | 1b604b88932719d219d941333f38f5209f65945a /webui/src/components/Content | |
parent | 0b3acaa3211b1c884bd42f18bf58383343b42bc1 (diff) | |
download | git-bug-07e1c45cd70554630640bb1ea25968078a36fd6c.tar.gz |
webui: minor code fixes
Diffstat (limited to 'webui/src/components/Content')
-rw-r--r-- | webui/src/components/Content/PreTag.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/webui/src/components/Content/PreTag.tsx b/webui/src/components/Content/PreTag.tsx index 5256ab12..8e352153 100644 --- a/webui/src/components/Content/PreTag.tsx +++ b/webui/src/components/Content/PreTag.tsx @@ -11,7 +11,7 @@ const useStyles = makeStyles({ const PreTag = (props: React.HTMLProps<HTMLPreElement>) => { const classes = useStyles(); - return <pre className={classes.tag} {...props}></pre>; + return <pre className={classes.tag} {...props} />; }; export default PreTag; |