@@ -208,7 +208,7 @@ export default {
setQueryParams(){
if(!this.outside){
if(this.isContract){
- this.queryParams.current = ((this.currentLocation-1) < 5)? 1 : ((this.currentLocation-1) - 5)
+ this.queryParams.current = ((this.currentLocation-1) <= 5)? 1 : ((this.currentLocation-1) - 5)
}else{
this.queryParams.current = parseInt((this.currentLocation-1) / this.queryParams.size) + 1
}