Disable tour by removing shortcut and default to run

This commit is contained in:
jaknapper 2025-04-08 19:23:04 +01:00
parent d4247235e3
commit 1044764192

View file

@ -196,7 +196,7 @@ export default {
this.checkConnection();
// Handle guided tour
// If the user has already completed or skipped the guided tour
var completedTour = this.getLocalStorageObj("completedTour") || false;
var completedTour = this.getLocalStorageObj("completedTour") || true;
if (!completedTour) {
this.$tours["guidedTour"].start();
}
@ -283,11 +283,6 @@ export default {
shortcut: "shift+↑ / shift+↓",
description: "Switch tab"
});
// Re-run tour
Mousetrap.bind("alt+t", () => {
this.$tours["guidedTour"].start();
});
},
beforeDestroy: function() {