File tree 2 files changed +2
-2
lines changed
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -93,7 +93,7 @@ exports[`renders ./components/select/demo/basic.vue correctly 1`] = `
93
93
`;
94
94
95
95
exports[`renders ./components/select/demo/big-data.vue correctly 1`] = `
96
- <h2 >10000 Items</h2 >
96
+ <h2 >100000 Items</h2 >
97
97
<div style = " width: 100%;" class = " ant-select ant-select-multiple ant-select-show-search" >
98
98
<!---->
99
99
<!---->
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ Select use virtual scroll which get better performance than 1.x
29
29
<script lang="ts">
30
30
import { defineComponent , reactive } from ' vue' ;
31
31
const options: { value: string ; disabled: boolean }[] = [];
32
- for (let i = 0 ; i < 10000 ; i ++ ) {
32
+ for (let i = 0 ; i < 100000 ; i ++ ) {
33
33
const value = ` ${i .toString (36 )}${i } ` ;
34
34
options .push ({
35
35
value ,
You can’t perform that action at this time.
0 commit comments