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

@ -53,9 +53,7 @@
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",
@ -83,6 +81,5 @@ export default {
document.title = document.title + ` - ${this.name}`;
},
},
};
</script>