diff client/src/components/importoverview/ImportOverview.vue @ 2985:1b8bb4f89227

client: removed .js and .vue extention from imports
author Markus Kottlaender <markus@intevation.de>
date Tue, 09 Apr 2019 18:38:15 +0200
parents 1775ffa65504
children 5a3ac4d3dbbb
line wrap: on
line diff
--- a/client/src/components/importoverview/ImportOverview.vue	Tue Apr 09 18:23:07 2019 +0200
+++ b/client/src/components/importoverview/ImportOverview.vue	Tue Apr 09 18:38:15 2019 +0200
@@ -120,7 +120,7 @@
 import { displayError, displayInfo } from "@/lib/errors";
 import { STATES } from "@/store/imports";
 import { sortTable } from "@/lib/mixins";
-import { HTTP } from "@/lib/http.js";
+import { HTTP } from "@/lib/http";
 import {
   startOfDay,
   startOfHour,
@@ -133,9 +133,9 @@
 
 export default {
   components: {
-    Filters: () => import("./Filters.vue"),
-    LogEntry: () => import("./LogEntry.vue"),
-    LogDetail: () => import("./LogDetail.vue")
+    Filters: () => import("./Filters"),
+    LogEntry: () => import("./LogEntry"),
+    LogDetail: () => import("./LogDetail")
   },
   mixins: [sortTable],
   LAST_HOUR: "lasthour",