aboutsummaryrefslogtreecommitdiff
path: root/src/components/side_drawer/side_drawer.js
diff options
context:
space:
mode:
authortaehoon <th.dev91@gmail.com>2019-03-05 14:01:49 -0500
committertaehoon <th.dev91@gmail.com>2019-03-05 14:01:49 -0500
commit7bceabb5bda1f7d0737f8f51e0aa07879b7ce72e (patch)
treea201f0a1f7437574eb72284e0a3adf445e3bee23 /src/components/side_drawer/side_drawer.js
parentbaf603a506529cfacdd4bf0b98f248cd3ed35b34 (diff)
Rename UserCardContent to UserCard
Diffstat (limited to 'src/components/side_drawer/side_drawer.js')
-rw-r--r--src/components/side_drawer/side_drawer.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/side_drawer/side_drawer.js b/src/components/side_drawer/side_drawer.js
index b5c49059..ad3738d1 100644
--- a/src/components/side_drawer/side_drawer.js
+++ b/src/components/side_drawer/side_drawer.js
@@ -1,4 +1,4 @@
-import UserCardContent from '../user_card_content/user_card_content.vue'
+import UserCard from '../user_card/user_card.vue'
import { unseenNotificationsFromStore } from '../../services/notification_utils/notification_utils'
// TODO: separate touch gesture stuff into their own utils if more components want them
@@ -12,7 +12,7 @@ const SideDrawer = {
closed: true,
touchCoord: [0, 0]
}),
- components: { UserCardContent },
+ components: { UserCard },
computed: {
currentUser () {
return this.$store.state.users.currentUser