From 42086cf5b3f03d226725faf0c2897b2561bea6fb Mon Sep 17 00:00:00 2001 From: Vanessa Date: Mon, 16 May 2022 11:23:58 +0800 Subject: [PATCH] :bug: fix #1235 --- CHANGELOG.md | 1 + src/ts/upload/index.ts | 3 +++ 2 files changed, 4 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index ac9d874fe..2da382bd4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -97,6 +97,7 @@ ### v3.8.15 / 2022-06 +* [1235](https://github.com/Vanessa219/vditor/issues/1235) 自定义上传无法连续上传相同的图片 `修复缺陷` * [1228](https://github.com/Vanessa219/vditor/issues/1228) 使用删除图标删除后,大纲没有自动更新 `修复缺陷` * [1230](https://github.com/Vanessa219/vditor/issues/1230) cnd preview path 重复加载问题 `改进功能` diff --git a/src/ts/upload/index.ts b/src/ts/upload/index.ts index d019641c7..28b862da8 100644 --- a/src/ts/upload/index.ts +++ b/src/ts/upload/index.ts @@ -155,6 +155,9 @@ const uploadFiles = if (vditor.options.upload.handler) { const isValidate = await vditor.options.upload.handler(fileList); + if (element) { + element.value = ""; + } if (typeof isValidate === "string") { vditor.tip.show(isValidate); return;