diff --git a/web/pages/chat.tsx b/web/pages/chat.tsx index 22a4080ff..0a550d303 100644 --- a/web/pages/chat.tsx +++ b/web/pages/chat.tsx @@ -153,6 +153,13 @@ export default function Chat() { key: 'body', className: 'message-col', width: 320, + render: body => ( +
+ ) }, { title: '', diff --git a/web/styles/chat.scss b/web/styles/chat.scss index e2c28d76c..4f7d04f98 100644 --- a/web/styles/chat.scss +++ b/web/styles/chat.scss @@ -24,6 +24,16 @@ font-size: 11px; } } + + .message-contents { + overflow: hidden; + img { + position: relative; + margin-top: -5px; + width: 3rem; + padding: 0.25rem; + } + } } .bulk-editor {