Remove unused variable

This commit is contained in:
Ramon Wenger 2023-02-07 16:55:35 +01:00
parent 0bfc4f9bcb
commit 973fef379d
1 changed files with 1 additions and 1 deletions

View File

@ -37,7 +37,7 @@ export default {
};
},
beforeRouteLeave(to, from, next) {
beforeRouteLeave(to, _, next) {
// toggle edit mode if leaving the module subtree
if (this.module.inEditMode && to.path.indexOf('/module/') === -1) {
setModuleEditMode(this.module.slug, false);