From 2fcbe1e291086cb654b49304897eefe2edd219de Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Gayoso=20Gonz=C3=A1lez?= Date: Fri, 23 Jun 2023 09:09:53 +0200 Subject: [PATCH] Minor: Change naming of social component for consistency --- assets/vue/router/social.js | 6 +++--- assets/vue/views/social/{Layout.vue => SocialLayout.vue} | 2 +- assets/vue/views/social/{Wall.vue => SocialWall.vue} | 0 3 files changed, 4 insertions(+), 4 deletions(-) rename assets/vue/views/social/{Layout.vue => SocialLayout.vue} (95%) rename assets/vue/views/social/{Wall.vue => SocialWall.vue} (100%) diff --git a/assets/vue/router/social.js b/assets/vue/router/social.js index 295f0de263..bd0c439343 100644 --- a/assets/vue/router/social.js +++ b/assets/vue/router/social.js @@ -2,12 +2,12 @@ export default { path: '/social', meta: {requiresAuth: true}, name: 'Social', - component: () => import('../views/social/Layout.vue'), + component: () => import('../views/social/SocialLayout.vue'), children: [ { name: 'SocialWall', path: '', - component: () => import('../views/social/Wall.vue') + component: () => import('../views/social/SocialWall.vue') }, ] -} \ No newline at end of file +} diff --git a/assets/vue/views/social/Layout.vue b/assets/vue/views/social/SocialLayout.vue similarity index 95% rename from assets/vue/views/social/Layout.vue rename to assets/vue/views/social/SocialLayout.vue index d58a33c2af..9b9bf9c9a6 100644 --- a/assets/vue/views/social/Layout.vue +++ b/assets/vue/views/social/SocialLayout.vue @@ -21,7 +21,7 @@