Skip to content

Commit

Permalink
close #77
Browse files Browse the repository at this point in the history
  • Loading branch information
silverprize committed Jun 4, 2017
1 parent b0c5576 commit caca2cb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions client/components/board_list_item/board_list_item.vue
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<router-link :to="{name: 'board.view', params: {name: $route.params.name, seq: item.seq}, query: $route.query}" class="item">
<div class="content">
<div :class="{'ui tiny disabled': item.status && item.status.delete}" class="header break-all">
<div v-if="!isEmptyArray(item.galleries)" class="pull-right">
<div v-if="!isNotice && !isEmptyArray(item.galleries)" class="pull-right">
<div class="ui rounded bordered image thumbnail">
<img :src="item.galleries[0].thumbnailUrl">
</div>
Expand All @@ -15,11 +15,11 @@
</span>
</div>

<div class="extra">{{item.shortContent}}...</div>
<div v-if="!isNotice" class="extra">{{item.shortContent}}...</div>

<div class="extra">
<div class="ui small labels nomargin">
<div :class="categoryColor(item.category)" class="ui label bottom">
<div v-if="!isNotice" :class="categoryColor(item.category)" class="ui label bottom">
{{$t(categoryLabel(item.category))}}<div class="detail">{{item.seq}}</div>
</div>
<div v-if="item.writer" :class="{image: item.writer.picture}" class="ui image basic label bottom">
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "jakduk-web",
"version": "2.1.0",
"version": "2.1.1",
"private": true,
"main": "app.js",
"scripts": {
Expand Down

0 comments on commit caca2cb

Please sign in to comment.