mirror of
https://github.com/ant-design/ant-design.git
synced 2025-01-18 22:36:31 +08:00
fix bug
This commit is contained in:
parent
353f2cb004
commit
6614fb9746
@ -174,12 +174,11 @@ export default class Upload extends React.Component {
|
||||
}
|
||||
|
||||
beforeUpload = (file) => {
|
||||
console.log(this.props);
|
||||
this.recentUploadStatus = this.props.beforeUpload(file);
|
||||
return this.recentUploadStatus;
|
||||
}
|
||||
|
||||
handleRemove = (file) => {
|
||||
handleRemove(file) {
|
||||
let fileList = this.removeFile(file);
|
||||
if (fileList) {
|
||||
this.onChange({
|
||||
|
@ -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