diff --git a/packages/semi-ui/select/index.tsx b/packages/semi-ui/select/index.tsx index f11c54c419..9731324c9f 100644 --- a/packages/semi-ui/select/index.tsx +++ b/packages/semi-ui/select/index.tsx @@ -1094,7 +1094,9 @@ class Select extends BaseComponent { const { maxTagCount } = this.props; const maxVisibleCount = selections.size - maxTagCount; const newOverFlowItemCount = maxVisibleCount > 0 ? maxVisibleCount + items.length - 1 : items.length - 1; - if (items.length > 1 && overflowItemCount !== newOverFlowItemCount) { + + // fix: issues 1560 + if (items.length >= 1 && overflowItemCount !== newOverFlowItemCount) { this.foundation.updateOverflowItemCount(selections.size, newOverFlowItemCount); } }