Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewyatesg committed Apr 8, 2018
2 parents 6564d87 + fbefe1a commit b4e51f7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion routes/create/thread.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ module.exports = {
pinned = req.body.pinned | false,
ip = req.connection.remoteAddress,
content = req.body.content,
title = req.body.title;
title = req.body.title + ":";

Thread.findOne({ title: title }, function (err, result) {
if (err) {
Expand Down
4 changes: 2 additions & 2 deletions src/components/Catalog.vue
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
R: <b>?</b>
</div>
<div class="teaser">
<b>Title: </b> {{ thread.title }}
<b>{{ thread.title }}</b> {{ thread.content }}
</div>
</div>
</div>
Expand Down Expand Up @@ -119,7 +119,7 @@
margin-bottom: 20px;
padding: 5px 0 3px;
position: relative;
max-width: 180px;
width: 180px;
max-height: 320px;
}
Expand Down

0 comments on commit b4e51f7

Please sign in to comment.