Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: 解决微信小程序滚动报错问题 #2832

Merged
merged 1 commit into from
Dec 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/packages/elevator/demos/taro/demo2.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ const Demo2 = () => {
}
return (
<Elevator
className="test-elevator1"
className="test-elevator2"
list={dataList}
height="220"
floorKey={floorKey}
Expand Down
1 change: 1 addition & 0 deletions src/packages/elevator/demos/taro/demo3.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@ const Demo3 = () => {
}
return (
<Elevator
className="test-elevator3"
showKeys={false}
list={dataList}
height="260"
Expand Down
1 change: 1 addition & 0 deletions src/packages/elevator/demos/taro/demo4.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,7 @@ const Demo4 = () => {
}
return (
<Elevator
className="test-elevator4"
list={dataList}
height="220"
sticky
Expand Down
1 change: 1 addition & 0 deletions src/packages/elevator/demos/taro/demo5.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@ const Demo5 = () => {
}
return (
<Elevator
className="test-elevator5"
list={dataList}
height="260"
onItemClick={(key: string, item: any) => onItemClick(key, item)}
Expand Down
Loading