This is an automated email from the ASF dual-hosted git repository. kinow pushed a commit to branch GH-2767-fix-js-warnings in repository https://gitbox.apache.org/repos/asf/jena.git
commit c3159c32fbb4e809727852e6e83ff4934f82ba7c 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() }) },
