File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -118,7 +118,7 @@ export default {
118
118
return this .$store .state .resultsnum
119
119
120
120
} else {
121
- return tp
121
+ return tp + 1
122
122
123
123
}
124
124
},
Original file line number Diff line number Diff line change @@ -123,7 +123,7 @@ export default {
123
123
124
124
offset () {
125
125
if (this .queryParam > 1 ) {
126
- return Number (this .queryParam - 1 ) * 11 ;
126
+ return Number (this .queryParam - 1 ) * 12 ;
127
127
} else {
128
128
return 0 ;
129
129
}
Original file line number Diff line number Diff line change @@ -62,12 +62,12 @@ const createStore = () =>
62
62
63
63
} ,
64
64
setGridNumPosts ( { state, commit } ) {
65
- if ( state . blogPosts > 13 ) {
65
+ if ( state . blogPosts > 12 ) {
66
66
this . $store . commit ( "SET_GRIDNUMPOSTS" , 12 ) ;
67
67
}
68
68
} ,
69
69
setGridNumCats ( { state, commit } ) {
70
- if ( state . allCats > 13 ) {
70
+ if ( state . allCats > 12 ) {
71
71
this . $store . commit ( "SET_GRIDNUMCATS" , 12 ) ;
72
72
}
73
73
} ,
You can’t perform that action at this time.
0 commit comments