Skip to content

Commit

Permalink
apply the same fixes to the inbox
Browse files Browse the repository at this point in the history
  • Loading branch information
eatyourgreens committed Jun 5, 2024
1 parent 32d4260 commit 08307f6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion app/talk/inbox-conversation.cjsx
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ Message = createReactClass
<strong><Link to="/users/#{@state.commentOwner?.login}">{@state.commentOwner?.display_name}</Link> (@{@state.commentOwner?.login})</strong>{' '}
<span>{timestamp(@props.data.updated_at)}</span>
</span>
<Markdown>{@props.data.body}</Markdown>
<Markdown>{@props.data.body.trim()}</Markdown>
</div>

module.exports = createReactClass
Expand Down
3 changes: 3 additions & 0 deletions css/inbox.styl
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,9 @@
font-style: italic
p
margin: 5px 0
.markdown
> pre
white-space: pre-wrap

.new-message-form
@extend .talk-module
Expand Down

0 comments on commit 08307f6

Please sign in to comment.