Browse Source

fix: select dropdownMatchSelectWidth invalid #4118 (#4164)

pull/4171/head
zkwolf 4 years ago committed by GitHub
parent
commit
f091582e03
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      components/vc-virtual-list/List.tsx

2
components/vc-virtual-list/List.tsx

@ -144,6 +144,7 @@ const List = defineComponent({
end: state.mergedData.length - 1,
offset: undefined,
};
return;
}
// Always use virtual scroll bar in avoid shaking
@ -154,6 +155,7 @@ const List = defineComponent({
end: state.mergedData.length - 1,
offset: undefined,
};
return;
}
let itemTop = 0;

Loading…
Cancel
Save