We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dd729e2 commit 02b365bCopy full SHA for 02b365b
src/BootstrapBlazor/Components/Upload/UploadBase.cs
@@ -149,7 +149,7 @@ protected async Task OnFileChange(InputFileChangeEventArgs args)
149
fileCount = MaxFileCount.Value;
150
151
// 计算剩余可上传数量
152
- fileCount = fileCount - Files.Count;
+ fileCount -= Files.Count;
153
if (fileCount <= 0)
154
{
155
// 如果剩余可上传数量小于等于 0 则不允许继续上传
0 commit comments