From fb7ceb2e35ef1ab66c806b7f75094ab710c0cbac Mon Sep 17 00:00:00 2001 From: yumoqing Date: Sun, 28 Sep 2025 15:59:09 +0800 Subject: [PATCH] bugfix --- bricks/input.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bricks/input.js b/bricks/input.js index ad9be70..971f4ba 100644 --- a/bricks/input.js +++ b/bricks/input.js @@ -522,7 +522,7 @@ bricks.UiFile = class extends bricks.VBox { if (this.opts.accept && f.type.startsWith(this.opts.accept)){ files.push(f); } - }); + }; if (this.opts.multiple){ this.value = files; this.set_input_file(files);