From 7375b42076c55456a3c69761f974bc99e6c08c79 Mon Sep 17 00:00:00 2001 From: Angel Fernando Quiroz Campos Date: Mon, 28 Aug 2023 12:08:16 -0500 Subject: [PATCH] Calendar: Rename components - refs BT#20903 --- .../ccalendarevent/{Form.vue => CCalendarEventForm.vue} | 0 .../ccalendarevent/{Info.vue => CCalendarEventInfo.vue} | 0 .../{Layout.vue => CCalendarEventLayout.vue} | 0 assets/vue/router/ccalendarevent.js | 8 ++++---- .../{Create.vue => CCalendarEventCreate.vue} | 2 +- .../ccalendarevent/{List.vue => CCalendarEventList.vue} | 4 ++-- .../ccalendarevent/{Show.vue => CCalendarEventShow.vue} | 0 7 files changed, 7 insertions(+), 7 deletions(-) rename assets/vue/components/ccalendarevent/{Form.vue => CCalendarEventForm.vue} (100%) rename assets/vue/components/ccalendarevent/{Info.vue => CCalendarEventInfo.vue} (100%) rename assets/vue/components/ccalendarevent/{Layout.vue => CCalendarEventLayout.vue} (100%) rename assets/vue/views/ccalendarevent/{Create.vue => CCalendarEventCreate.vue} (99%) rename assets/vue/views/ccalendarevent/{List.vue => CCalendarEventList.vue} (99%) rename assets/vue/views/ccalendarevent/{Show.vue => CCalendarEventShow.vue} (100%) diff --git a/assets/vue/components/ccalendarevent/Form.vue b/assets/vue/components/ccalendarevent/CCalendarEventForm.vue similarity index 100% rename from assets/vue/components/ccalendarevent/Form.vue rename to assets/vue/components/ccalendarevent/CCalendarEventForm.vue diff --git a/assets/vue/components/ccalendarevent/Info.vue b/assets/vue/components/ccalendarevent/CCalendarEventInfo.vue similarity index 100% rename from assets/vue/components/ccalendarevent/Info.vue rename to assets/vue/components/ccalendarevent/CCalendarEventInfo.vue diff --git a/assets/vue/components/ccalendarevent/Layout.vue b/assets/vue/components/ccalendarevent/CCalendarEventLayout.vue similarity index 100% rename from assets/vue/components/ccalendarevent/Layout.vue rename to assets/vue/components/ccalendarevent/CCalendarEventLayout.vue diff --git a/assets/vue/router/ccalendarevent.js b/assets/vue/router/ccalendarevent.js index cd833b15c8..501753bd21 100644 --- a/assets/vue/router/ccalendarevent.js +++ b/assets/vue/router/ccalendarevent.js @@ -3,22 +3,22 @@ export default { meta: { requiresAuth: true }, name: 'ccalendarevent', redirect: { name: 'CCalendarEventList' }, - component: () => import('../components/ccalendarevent/Layout.vue'), + component: () => import('../components/ccalendarevent/CCalendarEventLayout.vue'), children: [ { name: 'CCalendarEventShow', path: 'show', - component: () => import('../views/ccalendarevent/Show.vue') + component: () => import('../views/ccalendarevent/CCalendarEventShow.vue') }, { name: 'CCalendarEventCreate', path: 'new', - component: () => import('../views/ccalendarevent/Create.vue') + component: () => import('../views/ccalendarevent/CCalendarEventCreate.vue') }, { name: 'CCalendarEventList', path: '', - component: () => import('../views/ccalendarevent/List.vue') + component: () => import('../views/ccalendarevent/CCalendarEventList.vue') } ] }; diff --git a/assets/vue/views/ccalendarevent/Create.vue b/assets/vue/views/ccalendarevent/CCalendarEventCreate.vue similarity index 99% rename from assets/vue/views/ccalendarevent/Create.vue rename to assets/vue/views/ccalendarevent/CCalendarEventCreate.vue index fdcb91390d..b753d15374 100644 --- a/assets/vue/views/ccalendarevent/Create.vue +++ b/assets/vue/views/ccalendarevent/CCalendarEventCreate.vue @@ -13,7 +13,7 @@