File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -365,7 +365,7 @@ export default {
365365 'fieldNames' ,
366366 ] )
367367
368- let options = this . options
368+ let options = props . options
369369 if ( inputValue ) {
370370 options = this . generateFilteredOptions ( prefixCls )
371371 }
Original file line number Diff line number Diff line change @@ -92,13 +92,13 @@ export default {
9292 value ( val , oldValue ) {
9393 if ( ! shallowEqualArrays ( val , oldValue ) ) {
9494 const newValues = {
95- value : oldValue || [ ] ,
96- activeValue : oldValue || [ ] ,
95+ sValue : val || [ ] ,
96+ sActiveValue : val || [ ] ,
9797 }
9898 // allow activeValue diff from value
9999 // https://github.com/ant-design/ant-design/issues/2767
100100 if ( hasProp ( this , 'loadData' ) ) {
101- delete newValues . activeValue
101+ delete newValues . sActiveValue
102102 }
103103 this . setState ( newValues )
104104 }
You can’t perform that action at this time.
0 commit comments