Remove empty arrow functions that aren't needed
parent
b1c368177e
commit
ab5a6e4bf4
|
@ -1,4 +1,3 @@
|
|||
<!--I need to commit to trigger the workflow-->
|
||||
<p align="center">
|
||||
<img src="https://raw.githubusercontent.com/filebrowser/logo/master/banner.png" width="550"/>
|
||||
</p>
|
||||
|
|
|
@ -184,11 +184,11 @@ export default {
|
|||
this.closeHovers();
|
||||
},
|
||||
toAccountSettings() {
|
||||
this.$router.push({ path: "/settings/profile" }, () => {});
|
||||
this.$router.push({ path: "/settings/profile" });
|
||||
this.$store.commit("closeHovers");
|
||||
},
|
||||
toSettings() {
|
||||
this.$router.push({ path: "/settings/global" }, () => {});
|
||||
this.$router.push({ path: "/settings/global" });
|
||||
this.closeHovers();
|
||||
},
|
||||
help() {
|
||||
|
|
Loading…
Reference in New Issue