From f4021d525556f4cbcd3660baec96cccc10fcf1d0 Mon Sep 17 00:00:00 2001 From: afc163 Date: Tue, 24 Jan 2017 15:02:54 +0800 Subject: [PATCH] Fix default locale in Upload, close #4697 --- components/upload/uploadList.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/upload/uploadList.tsx b/components/upload/uploadList.tsx index fbb5810ceb..ad1f41abb5 100644 --- a/components/upload/uploadList.tsx +++ b/components/upload/uploadList.tsx @@ -71,7 +71,7 @@ export default class UploadList extends React.Component { if (listType === 'picture' || listType === 'picture-card') { if (file.status === 'uploading' || (!file.thumbUrl && !file.url)) { if (listType === 'picture-card') { - icon =
文件上传中
; + icon =
Uploading...
; } else { icon = ; }