This is an automated email from the ASF dual-hosted git repository.

andy pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/jena.git

commit c985de3e47155c62d02c0cc49e4d133a722a4a03
Author: Bruno P. Kinoshita <[email protected]>
AuthorDate: Sat Oct 12 17:02:00 2024 +0200

    GH-2767: Use _ for param name to ignore unused arg
---
 .../jena-fuseki-ui/src/mixins/current-dataset-navigation-guards.js      | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/jena-fuseki2/jena-fuseki-ui/src/mixins/current-dataset-navigation-guards.js 
b/jena-fuseki2/jena-fuseki-ui/src/mixins/current-dataset-navigation-guards.js
index b79e37ab5f..78a15be39c 100644
--- 
a/jena-fuseki2/jena-fuseki-ui/src/mixins/current-dataset-navigation-guards.js
+++ 
b/jena-fuseki2/jena-fuseki-ui/src/mixins/current-dataset-navigation-guards.js
@@ -31,7 +31,7 @@ export default {
   },
   async beforeRouteUpdate (from, to, next) {
     // eslint-disable-next-line no-unused-vars
-    next(async vm => {
+    next(async _ => {
       await this.loadCurrentDataset()
     })
   },

Reply via email to