mirror of
https://github.com/ant-design/ant-design.git
synced 2025-08-05 23:46:28 +08:00
commit
be378d4d70
@ -173,7 +173,7 @@ export default class Upload extends React.Component {
|
||||
this.handleRemove(targetItem);
|
||||
}
|
||||
|
||||
beforeUpload(file) {
|
||||
beforeUpload = (file) => {
|
||||
this.recentUploadStatus = this.props.beforeUpload(file);
|
||||
return this.recentUploadStatus;
|
||||
}
|
||||
|
@ -2,7 +2,7 @@ import React from 'react';
|
||||
import Animate from 'rc-animate';
|
||||
import Icon from '../icon';
|
||||
const prefixCls = 'ant-upload';
|
||||
import { Line } from '../progress';
|
||||
import Progress from '../progress';
|
||||
import classNames from 'classnames';
|
||||
|
||||
// https://developer.mozilla.org/en-US/docs/Web/API/FileReader/readAsDataURL
|
||||
@ -81,7 +81,7 @@ export default class UploadList extends React.Component {
|
||||
if (file.status === 'uploading') {
|
||||
progress = (
|
||||
<div className={`${prefixCls}-list-item-progress`}>
|
||||
<Line {...this.props.progressAttr} percent={file.percent} />
|
||||
<Progress type="line" {...this.props.progressAttr} percent={file.percent} />
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user