Minor: Change naming of social component for consistency

pull/4766/head
Daniel Gayoso González 2 years ago
parent 312b989691
commit 2fcbe1e291
  1. 6
      assets/vue/router/social.js
  2. 2
      assets/vue/views/social/SocialLayout.vue
  3. 0
      assets/vue/views/social/SocialWall.vue

@ -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')
},
]
}
}

@ -21,7 +21,7 @@
<script>
import {useStore} from "vuex";
import {onMounted, provide, readonly, ref, watch} from "vue";
import SocialNetworkWall from "./Wall";
import SocialNetworkWall from "./SocialWall.vue";
import {useRoute} from "vue-router";
export default {
Loading…
Cancel
Save