fix(Uploader): should not preview failed images (#10790)

Co-authored-by: Rail <wanglifei@yiqicai.com>
This commit is contained in:
活轨 2022-07-07 21:46:38 +08:00 committed by GitHub
parent 419a8e4f0e
commit 9a6bc32cf4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -230,7 +230,7 @@ export default defineComponent({
const imageFiles = props.modelValue.filter(isImageFile);
const images = imageFiles
.map((item) => {
if (item.file && !item.url) {
if (item.file && !item.url && item.status !== 'failed') {
item.url = URL.createObjectURL(item.file);
urls.push(item.url);
}