From 8d6a33120f6f5f33f3832ccb4e4b8c27e7c55822 Mon Sep 17 00:00:00 2001 From: Methapon2001 <61303214+Methapon2001@users.noreply.github.com> Date: Fri, 9 Aug 2024 14:40:31 +0700 Subject: [PATCH] chore: remove unused --- src/components/UsersDetailCardComponent.vue | 345 -------------------- src/components/index.ts | 1 - 2 files changed, 346 deletions(-) delete mode 100644 src/components/UsersDetailCardComponent.vue diff --git a/src/components/UsersDetailCardComponent.vue b/src/components/UsersDetailCardComponent.vue deleted file mode 100644 index d7cedd27..00000000 --- a/src/components/UsersDetailCardComponent.vue +++ /dev/null @@ -1,345 +0,0 @@ - - - - - - - - - - - - {{ $t('viewDetail') }} - - - - - - {{ $t('edit') }} - - - - - - {{ $t('delete') }} - - - - - - - - {{ - metadata.disabled - ? $t('switchOnLabel') - : $t('switchOffLabel') - }} - - - - - - - - - - - - { - if (canEditProfile) $emit('editProfile'); - } - " - > - - - - - - - - - - - {{ - $t( - list.type === 'CORP' - ? 'customerLegalEntity' - : 'customerNaturalPerson', - ) - }} - - - - - - {{ list.name }} - - {{ list.code }} - - - - - - - - - - {{ $t(d.label) }} - - {{ !d.value ? '-' : d.value }} - - - - - - - - diff --git a/src/components/index.ts b/src/components/index.ts index b93168d0..420fea1b 100644 --- a/src/components/index.ts +++ b/src/components/index.ts @@ -19,4 +19,3 @@ export { default as StatCardComponent } from './StatCardComponent.vue'; export { default as TabComponent } from './TabComponent.vue'; export { default as TooltipComponent } from './TooltipComponent.vue'; export { default as TreeCompoent } from './TreeCompoent.vue'; -export { default as UsersDetailCardComponent } from './UsersDetailCardComponent.vue';