From 1e74c74e6c1d5534086f232145814a68aa9766a4 Mon Sep 17 00:00:00 2001 From: Matthias Mohr Date: Tue, 12 Nov 2024 14:01:11 +0100 Subject: [PATCH] Fix o.A.confirmOpenAll is not a function #329 --- src/utils.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils.js b/src/utils.js index 53b0da40..aab8c709 100644 --- a/src/utils.js +++ b/src/utils.js @@ -413,7 +413,7 @@ class Utils extends VueUtils { } } - confirmOpenAll(files) { + static confirmOpenAll(files) { return confirm(`You are about to open ${files.length} individual files / tabs, which could slow down the web browser. Are you sure you want to open all of them?`); }