diff options
author | Sascha <GlancingMind@outlook.com> | 2021-03-31 21:00:36 +0200 |
---|---|---|
committer | Sascha <GlancingMind@outlook.com> | 2021-04-07 19:29:52 +0200 |
commit | 637bce7ba73c6a0a3d898b9b5e7ad13dc992ee35 (patch) | |
tree | 1628e496ade1eda18350c9e8b85e77df97c92280 /webui/src/components/CommentInput | |
parent | c7a441bad6a7ca247d955b63d2ba604435fdaab6 (diff) | |
download | git-bug-637bce7ba73c6a0a3d898b9b5e7ad13dc992ee35.tar.gz |
Fix and improve rendering of markdown elements
- Markdown will no be rendered
- Render text always below an image
- block quotes wont be just indented text
Diffstat (limited to 'webui/src/components/CommentInput')
-rw-r--r-- | webui/src/components/CommentInput/CommentInput.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/webui/src/components/CommentInput/CommentInput.tsx b/webui/src/components/CommentInput/CommentInput.tsx index c574538e..f12ee8d8 100644 --- a/webui/src/components/CommentInput/CommentInput.tsx +++ b/webui/src/components/CommentInput/CommentInput.tsx @@ -5,7 +5,7 @@ import Tabs from '@material-ui/core/Tabs'; import TextField from '@material-ui/core/TextField'; import { makeStyles } from '@material-ui/core/styles'; -import Content from 'src/components/Content'; +import Content from '../Content'; /** * Styles |