aboutsummaryrefslogtreecommitdiffstats
path: root/webui/src/components/Content
diff options
context:
space:
mode:
authorMichael Muré <batolettre@gmail.com>2022-10-04 21:58:56 +0200
committerGitHub <noreply@github.com>2022-10-04 21:58:56 +0200
commita769deba2d1ca2c546dea104c46f3616723f20a5 (patch)
treeac85d31d0c7838a35a138b3170c16e1baf63259c /webui/src/components/Content
parenta00121970e5c3fe31655aa984e04aacc401ea3ea (diff)
parent49fe8e9f5dc627df205297944ac0b0d5ba84a6a4 (diff)
downloadgit-bug-a769deba2d1ca2c546dea104c46f3616723f20a5.tar.gz
Merge pull request #895 from MichaelMure/update-webui
webui: update most of dependencies
Diffstat (limited to 'webui/src/components/Content')
-rw-r--r--webui/src/components/Content/BlockQuoteTag.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/webui/src/components/Content/BlockQuoteTag.tsx b/webui/src/components/Content/BlockQuoteTag.tsx
index ae6c34f4..dc270c1f 100644
--- a/webui/src/components/Content/BlockQuoteTag.tsx
+++ b/webui/src/components/Content/BlockQuoteTag.tsx
@@ -12,7 +12,7 @@ const useStyles = makeStyles((theme) => ({
},
}));
-const BlockQuoteTag: React.FC<React.HTMLProps<HTMLElement>> = (props) => {
+const BlockQuoteTag: React.FC<React.HTMLProps<HTMLQuoteElement>> = (props) => {
const classes = useStyles();
return <blockquote className={classes.tag} {...props} />;
};