From f526aca16d896c75be0fc1079c13752f9664d56c Mon Sep 17 00:00:00 2001 From: song-cc-rock Date: Tue, 5 Nov 2024 11:47:40 +0800 Subject: [PATCH] =?UTF-8?q?fix(=E9=A1=B9=E7=9B=AE=E7=AE=A1=E7=90=86):=20?= =?UTF-8?q?=E5=AF=BC=E5=85=A5=E7=94=A8=E6=88=B7=E6=8F=90=E7=A4=BA=E8=AF=AD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../frontend/src/business/system/components/UserImport.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/system-setting/frontend/src/business/system/components/UserImport.vue b/system-setting/frontend/src/business/system/components/UserImport.vue index edd8b1ae32..251f29bb57 100644 --- a/system-setting/frontend/src/business/system/components/UserImport.vue +++ b/system-setting/frontend/src/business/system/components/UserImport.vue @@ -86,7 +86,7 @@ export default { return false; } if (file.size / 1024 / 1024 > this.uploadSize) { - this.$warning(this.$t('system_user.upload_limit_size_warn')); + this.$warning(this.$t('system_user.upload_limit_size_warn', {size: this.uploadSize})); return false; } this.isLoading = true;