From 75b51df0493cab544528862b765a2609c84c6284 Mon Sep 17 00:00:00 2001 From: fangxiang Date: Wed, 20 Apr 2022 08:42:55 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E6=B7=BB=E5=8A=A0=E4=BF=A1?= =?UTF-8?q?=E5=8F=B7=E6=BA=90=E6=97=B6,=E6=96=87=E4=BB=B6=E7=AE=A1?= =?UTF-8?q?=E7=90=86=E7=AD=9B=E9=80=89=E5=90=8E=E7=BC=80=E4=BC=9A=E5=8C=BA?= =?UTF-8?q?=E5=88=86=E5=A4=A7=E5=B0=8F=E5=86=99=E7=9A=84BUG?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/FileManageDialog.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/FileManageDialog.vue b/src/components/FileManageDialog.vue index 20de7a9..e92baf6 100644 --- a/src/components/FileManageDialog.vue +++ b/src/components/FileManageDialog.vue @@ -615,7 +615,7 @@ export default defineComponent({ ++directory_count.value; } else { for (const filter of filters.value) { - if (item.name.endsWith(filter)) { + if (item.name.toLowerCase().endsWith(filter)) { files.value.push(item); ++file_count.value; break;