Remove empty arrow functions that aren't needed

pull/2821/head
Jonathan Bout 2024-04-25 22:25:14 +02:00
parent b1c368177e
commit ab5a6e4bf4
2 changed files with 2 additions and 3 deletions

View File

@ -1,4 +1,3 @@
<!--I need to commit to trigger the workflow-->
<p align="center"> <p align="center">
<img src="https://raw.githubusercontent.com/filebrowser/logo/master/banner.png" width="550"/> <img src="https://raw.githubusercontent.com/filebrowser/logo/master/banner.png" width="550"/>
</p> </p>

View File

@ -184,11 +184,11 @@ export default {
this.closeHovers(); this.closeHovers();
}, },
toAccountSettings() { toAccountSettings() {
this.$router.push({ path: "/settings/profile" }, () => {}); this.$router.push({ path: "/settings/profile" });
this.$store.commit("closeHovers"); this.$store.commit("closeHovers");
}, },
toSettings() { toSettings() {
this.$router.push({ path: "/settings/global" }, () => {}); this.$router.push({ path: "/settings/global" });
this.closeHovers(); this.closeHovers();
}, },
help() { help() {