Skip to content

Commit

Permalink
Merge pull request #246 from FroggyTaipei/staging
Browse files Browse the repository at this point in the history
Release 1.0.5 on release
  • Loading branch information
travishen authored Mar 26, 2019
2 parents 15c7cb3 + b8fa7e7 commit d8bf4ef
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions frontend/src/components/CaseList.vue
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ export default {
}
}
],
perPage: 15,
perPage: 13,
perPageValues: [10],
selectedType: null,
selectedState: null,
Expand Down Expand Up @@ -178,7 +178,7 @@ export default {
return dateFormatted;
},
title(h, row) {
let showLimit = 10;
let showLimit = this.$store.state.isMobile ? 10 : 18;
let title = row.title;
if (title.length > showLimit) {
return title.substring(0, showLimit) + "...";
Expand Down

0 comments on commit d8bf4ef

Please sign in to comment.