fix: change hasValidItemCount condition

pull/6902/head
KumJungMin 2024-12-01 13:49:50 +09:00
parent 1be7b681e8
commit a831edfee8
1 changed files with 1 additions and 1 deletions

View File

@ -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;