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">
|
<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>
|
||||||
|
|
|
@ -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() {
|
||||||
|
|
Loading…
Reference in New Issue