Skip to content

Commit

Permalink
fix: wrong eventBus.js path and non-existant method call (#971)
Browse files Browse the repository at this point in the history
* fix: eventBus.js path reference

* fix: non-existant method call
  • Loading branch information
fmartingr authored Aug 28, 2024
1 parent 9a113af commit a4304bc
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion internal/view/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
import pageHome from "./assets/js/page/home.js";
import pageSetting from "./assets/js/page/setting.js";
import customDialog from "./assets/js/component/dialog.js";
import EventBus from "../assets/js/component/eventBus.js";
import EventBus from "./assets/js/component/eventBus.js";
Vue.prototype.$bus = EventBus;

var app = new Vue({
Expand Down
1 change: 0 additions & 1 deletion internal/view/login.html
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,6 @@
},
mounted() {
// Load setting
this.loadSetting();
localStorage.removeItem("shiori-account");
localStorage.removeItem("shiori-token");

Expand Down

0 comments on commit a4304bc

Please sign in to comment.