From 137408cda4cabcb7952ddd334ecd58a064db60bb Mon Sep 17 00:00:00 2001 From: Moriz Wahl Date: Mon, 7 Mar 2022 19:34:35 +0100 Subject: [PATCH] move SendOverview to components --- .../{pages/SendOverview => components}/GddSend.spec.js | 0 .../src/{pages/SendOverview => components}/GddSend.vue | 0 .../SendOverview => components}/GddSend/QrCode.spec.js | 0 .../SendOverview => components}/GddSend/QrCode.vue | 0 .../GddSend/TransactionConfirmation.vue | 0 .../GddSend/TransactionForm.spec.js | 0 .../GddSend/TransactionForm.vue | 0 .../GddSend/TransactionResult.vue | 0 frontend/src/pages/Profile.vue | 2 +- frontend/src/pages/Send.vue | 10 +++++----- frontend/src/routes/router.test.js | 4 ++-- 11 files changed, 8 insertions(+), 8 deletions(-) rename frontend/src/{pages/SendOverview => components}/GddSend.spec.js (100%) rename frontend/src/{pages/SendOverview => components}/GddSend.vue (100%) rename frontend/src/{pages/SendOverview => components}/GddSend/QrCode.spec.js (100%) rename frontend/src/{pages/SendOverview => components}/GddSend/QrCode.vue (100%) rename frontend/src/{pages/SendOverview => components}/GddSend/TransactionConfirmation.vue (100%) rename frontend/src/{pages/SendOverview => components}/GddSend/TransactionForm.spec.js (100%) rename frontend/src/{pages/SendOverview => components}/GddSend/TransactionForm.vue (100%) rename frontend/src/{pages/SendOverview => components}/GddSend/TransactionResult.vue (100%) diff --git a/frontend/src/pages/SendOverview/GddSend.spec.js b/frontend/src/components/GddSend.spec.js similarity index 100% rename from frontend/src/pages/SendOverview/GddSend.spec.js rename to frontend/src/components/GddSend.spec.js diff --git a/frontend/src/pages/SendOverview/GddSend.vue b/frontend/src/components/GddSend.vue similarity index 100% rename from frontend/src/pages/SendOverview/GddSend.vue rename to frontend/src/components/GddSend.vue diff --git a/frontend/src/pages/SendOverview/GddSend/QrCode.spec.js b/frontend/src/components/GddSend/QrCode.spec.js similarity index 100% rename from frontend/src/pages/SendOverview/GddSend/QrCode.spec.js rename to frontend/src/components/GddSend/QrCode.spec.js diff --git a/frontend/src/pages/SendOverview/GddSend/QrCode.vue b/frontend/src/components/GddSend/QrCode.vue similarity index 100% rename from frontend/src/pages/SendOverview/GddSend/QrCode.vue rename to frontend/src/components/GddSend/QrCode.vue diff --git a/frontend/src/pages/SendOverview/GddSend/TransactionConfirmation.vue b/frontend/src/components/GddSend/TransactionConfirmation.vue similarity index 100% rename from frontend/src/pages/SendOverview/GddSend/TransactionConfirmation.vue rename to frontend/src/components/GddSend/TransactionConfirmation.vue diff --git a/frontend/src/pages/SendOverview/GddSend/TransactionForm.spec.js b/frontend/src/components/GddSend/TransactionForm.spec.js similarity index 100% rename from frontend/src/pages/SendOverview/GddSend/TransactionForm.spec.js rename to frontend/src/components/GddSend/TransactionForm.spec.js diff --git a/frontend/src/pages/SendOverview/GddSend/TransactionForm.vue b/frontend/src/components/GddSend/TransactionForm.vue similarity index 100% rename from frontend/src/pages/SendOverview/GddSend/TransactionForm.vue rename to frontend/src/components/GddSend/TransactionForm.vue diff --git a/frontend/src/pages/SendOverview/GddSend/TransactionResult.vue b/frontend/src/components/GddSend/TransactionResult.vue similarity index 100% rename from frontend/src/pages/SendOverview/GddSend/TransactionResult.vue rename to frontend/src/components/GddSend/TransactionResult.vue diff --git a/frontend/src/pages/Profile.vue b/frontend/src/pages/Profile.vue index d01c94373..e06511f78 100644 --- a/frontend/src/pages/Profile.vue +++ b/frontend/src/pages/Profile.vue @@ -21,7 +21,7 @@ import FormUserNewsletter from './UserProfile/UserCard_Newsletter.vue' import FormUserCoinAnimation from './UserProfile/UserCard_CoinAnimation.vue' export default { - name: 'UserProfile', + name: 'Profile', components: { UserCard, FormUserData, diff --git a/frontend/src/pages/Send.vue b/frontend/src/pages/Send.vue index db8e8d314..072342d7c 100644 --- a/frontend/src/pages/Send.vue +++ b/frontend/src/pages/Send.vue @@ -30,10 +30,10 @@