fix: change hasValidItemCount condition
parent
1be7b681e8
commit
a831edfee8
|
@ -602,7 +602,7 @@ export default {
|
|||
return this.orientation === 'vertical';
|
||||
},
|
||||
hasValidItemCount() {
|
||||
return this.value && this.value.length >= this.d_numVisible;
|
||||
return this.value && this.value.length > this.d_numVisible;
|
||||
},
|
||||
isCircular() {
|
||||
return this.hasValidItemCount() && this.d_circular;
|
||||
|
|
Loading…
Reference in New Issue