This commit is contained in:
Felix Nüsse 2022-03-05 22:21:35 +01:00
parent fa21499f73
commit f70f4a3700
2 changed files with 4 additions and 11 deletions

View File

@ -28,11 +28,7 @@ import Breadcrumbs from "@/components/Breadcrumbs";
import Errors from "@/views/Errors";
import Preview from "@/views/files/Preview";
import Listing from "@/views/files/Listing";
import {
name,
} from "@/utils/constants";
import { name } from "@/utils/constants";
function clean(path) {
return path.endsWith("/") ? path.slice(0, -1) : path;

View File

@ -50,12 +50,10 @@
</template>
<script>
import {mapMutations, mapState} from "vuex";
import { mapMutations, mapState } from "vuex";
import HeaderBar from "@/components/header/HeaderBar";
import {
name,
} from "@/utils/constants";
import { name } from "@/utils/constants";
export default {
name: "settings",
@ -80,9 +78,8 @@ export default {
methods: {
...mapMutations(["setLoading"]),
async fetchData() {
document.title = document.title + ` - ${this.name}`;
document.title = document.title + ` - ${this.name}`;
},
},
};
</script>