From fd17af82c5e391d9355f55a1a62d298ec27ed6dd Mon Sep 17 00:00:00 2001 From: theronakpatel Date: Fri, 28 Feb 2025 14:37:22 +0530 Subject: [PATCH 1/2] Loader issue at drop_account --- css/ecloud-accounts-userregistration.css | 1 + src/DeleteShopAccountSetting.vue | 6 +++++- 2 files changed, 6 insertions(+), 1 deletion(-) create mode 100644 css/ecloud-accounts-userregistration.css diff --git a/css/ecloud-accounts-userregistration.css b/css/ecloud-accounts-userregistration.css new file mode 100644 index 00000000..f3b67749 --- /dev/null +++ b/css/ecloud-accounts-userregistration.css @@ -0,0 +1 @@ +html{background:var(--color-main-background)}#body-login .warning-messsage{width:100% !important}#body-login .v-align{align-items:flex-start !important;justify-content:flex-start !important}.v-align header{width:100% !important;display:flex !important;align-items:flex-start !important;justify-content:flex-start !important}#header{padding-left:5% !important}.v-align main{width:50% !important;margin:0 auto}#registrationForm .password-group #password{height:62px;margin-left:0;background-color:#fff;color:#000;border:1px solid #e6e8e9}@media only screen and (max-width: 768px){.v-align main{width:100% !important}#body-login .v-align{padding:2vh 0vh !important;max-height:fit-content !important}}#fields-password .Password__strength-meter{margin-bottom:0}#fields-password .Password__strength-meter:before{left:0}#fields-password .Password__strength-meter:after{right:0}#fields-password .Password__strength-meter:after,#fields-password .Password__strength-meter:before{width:100%} diff --git a/src/DeleteShopAccountSetting.vue b/src/DeleteShopAccountSetting.vue index 7c28a59c..4cc7d5d1 100644 --- a/src/DeleteShopAccountSetting.vue +++ b/src/DeleteShopAccountSetting.vue @@ -59,7 +59,7 @@ -
+
@@ -92,6 +92,7 @@ export default { userEmail: loadState(APPLICATION_NAME, 'email'), showError: false, allowDelete: true, + dataLoading: false, ordersDescription: '', } }, @@ -163,6 +164,7 @@ export default { } }, async getShopUsers() { + this.dataLoading = true try { const url = generateUrl( `/apps/${this.appName}/shop-accounts/users`, @@ -170,6 +172,7 @@ export default { const { data } = await Axios.get(url) this.shopUsers = data this.setOrderDescription() + this.dataLoading = false } catch (e) { if (e.response.status !== 404) { this.disableDeleteAccountEvent() @@ -178,6 +181,7 @@ export default { ) this.allowDelete = false } + this.dataLoading = false } this.disableOrEnableDeleteAccount() }, -- GitLab From 5ef41fabcae7858baae5ebe15cd5e3a6cd58b6d7 Mon Sep 17 00:00:00 2001 From: theronakpatel Date: Fri, 28 Feb 2025 14:38:03 +0530 Subject: [PATCH 2/2] Loader issue at drop_account --- css/ecloud-accounts-userregistration.css | 1 - 1 file changed, 1 deletion(-) delete mode 100644 css/ecloud-accounts-userregistration.css diff --git a/css/ecloud-accounts-userregistration.css b/css/ecloud-accounts-userregistration.css deleted file mode 100644 index f3b67749..00000000 --- a/css/ecloud-accounts-userregistration.css +++ /dev/null @@ -1 +0,0 @@ -html{background:var(--color-main-background)}#body-login .warning-messsage{width:100% !important}#body-login .v-align{align-items:flex-start !important;justify-content:flex-start !important}.v-align header{width:100% !important;display:flex !important;align-items:flex-start !important;justify-content:flex-start !important}#header{padding-left:5% !important}.v-align main{width:50% !important;margin:0 auto}#registrationForm .password-group #password{height:62px;margin-left:0;background-color:#fff;color:#000;border:1px solid #e6e8e9}@media only screen and (max-width: 768px){.v-align main{width:100% !important}#body-login .v-align{padding:2vh 0vh !important;max-height:fit-content !important}}#fields-password .Password__strength-meter{margin-bottom:0}#fields-password .Password__strength-meter:before{left:0}#fields-password .Password__strength-meter:after{right:0}#fields-password .Password__strength-meter:after,#fields-password .Password__strength-meter:before{width:100%} -- GitLab