diff --git a/frontend/src/components/files/ListingItem.vue b/frontend/src/components/files/ListingItem.vue index 0e46a5d3..2816dcf0 100644 --- a/frontend/src/components/files/ListingItem.vue +++ b/frontend/src/components/files/ListingItem.vue @@ -48,9 +48,6 @@ import * as upload from "@/utils/upload"; export default { name: "item", - compatConfig: { - ATTR_FALSE_VALUE: "suppress-warning", - }, data: function () { return { touches: 0, diff --git a/frontend/src/views/Files.vue b/frontend/src/views/Files.vue index 6119c529..51744265 100644 --- a/frontend/src/views/Files.vue +++ b/frontend/src/views/Files.vue @@ -31,7 +31,7 @@ import HeaderBar from "@/components/header/HeaderBar.vue"; import Breadcrumbs from "@/components/Breadcrumbs.vue"; import Errors from "@/views/Errors.vue"; import Preview from "@/views/files/Preview.vue"; -import Listing from "@/views/files/Listing.vue"; +import FileListing from "@/views/files/FileListing.vue"; function clean(path) { return path.endsWith("/") ? path.slice(0, -1) : path; @@ -44,7 +44,7 @@ export default { Breadcrumbs, Errors, Preview, - Listing, + FileListing, Editor: defineAsyncComponent(() => import("@/views/files/Editor.vue")), }, data: function () { @@ -73,7 +73,7 @@ export default { } if (this.req.isDir) { - return "listing"; + return "file-listing"; } else if ( this.req.type === "text" || this.req.type === "textImmutable" diff --git a/frontend/src/views/files/Listing.vue b/frontend/src/views/files/FileListing.vue similarity index 99% rename from frontend/src/views/files/Listing.vue rename to frontend/src/views/files/FileListing.vue index 422453b6..8dd8c334 100644 --- a/frontend/src/views/files/Listing.vue +++ b/frontend/src/views/files/FileListing.vue @@ -267,7 +267,6 @@