diff client/src/App.vue @ 641:14dfab4e6e32

refac: rename application/user to application/userbar to improve naming consistency
author Thomas Junk <thomas.junk@intevation.de>
date Thu, 13 Sep 2018 11:26:25 +0200
parents 13bccabbf7c5
children 83081ba6c9c1
line wrap: on
line diff
--- a/client/src/App.vue	Thu Sep 13 10:55:17 2018 +0200
+++ b/client/src/App.vue	Thu Sep 13 11:26:25 2018 +0200
@@ -16,7 +16,7 @@
                 </div>
             </div>
             <div class="bottomcontainer d-flex flex-row align-items-end">
-                <User v-if="isAuthenticated"></User>
+                <Userbar v-if="isAuthenticated"></Userbar>
             </div>
         </div>
         <div class="d-flex flex-column">
@@ -86,7 +86,7 @@
 import Sidebar from "./application/Sidebar";
 import Topbar from "./application/Topbar";
 import { mapGetters } from "vuex";
-import User from "./application/User";
+import Userbar from "./application/Userbar";
 
 export default {
   name: "app",
@@ -96,7 +96,7 @@
   components: {
     Sidebar,
     Topbar,
-    User
+    Userbar
   }
 };
 </script>