Skip to content

Commit

Permalink
fix: uploader h5/taro 增加校验 (#1297)
Browse files Browse the repository at this point in the history
* fix: 修改migrate文档

* fix: 调整文档

* fix: 修改v1升级到v2的兼容文档

* fix: 提交h5的uploader样式错乱的问题

* fix: 提交uploader校验判断
  • Loading branch information
junjun666 authored Aug 8, 2023
1 parent 6f239e6 commit 611e69e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/packages/uploader/uploader.taro.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -538,6 +538,7 @@ const InternalUploader: ForwardRefRenderFunction<
)}

{fileList.length !== 0 &&
Array.isArray(fileList) &&
fileList.map((item: any, index: number) => {
return (
<div
Expand Down
1 change: 1 addition & 0 deletions src/packages/uploader/uploader.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -466,6 +466,7 @@ const InternalUploader: ForwardRefRenderFunction<
)}

{fileList.length !== 0 &&
Array.isArray(fileList) &&
fileList.map((item: any, index: number) => {
return (
<div
Expand Down

0 comments on commit 611e69e

Please sign in to comment.