style(Uploader): update failed icon (#6653)

This commit is contained in:
neverland
2020-06-30 14:29:28 +08:00
committed by GitHub
parent cd7013648d
commit 7da1bc06ed
2 changed files with 2 additions and 2 deletions

View File

@@ -288,7 +288,7 @@ export default createComponent({
if (status === 'uploading' || status === 'failed') {
const MaskIcon =
status === 'failed' ? (
<Icon name="warning-o" class={bem('mask-icon')} />
<Icon name="close" class={bem('mask-icon')} />
) : (
<Loading class={bem('loading')} />
);