From f45ff6aca535ed5ab83707d1d22366f7fd209588 Mon Sep 17 00:00:00 2001 From: karthik-aot Date: Thu, 8 Jul 2021 15:09:57 -0700 Subject: [PATCH 1/2] fix put org issue --- .../auth/account-settings/account-info/AccountInfo.vue | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/auth-web/src/components/auth/account-settings/account-info/AccountInfo.vue b/auth-web/src/components/auth/account-settings/account-info/AccountInfo.vue index 6e7faddd3f..8a0ee23101 100644 --- a/auth-web/src/components/auth/account-settings/account-info/AccountInfo.vue +++ b/auth-web/src/components/auth/account-settings/account-info/AccountInfo.vue @@ -497,9 +497,7 @@ export default class AccountInfo extends Mixins(AccountChangeMixin) { private async updateDetails () { this.errorMessage = '' this.btnLabel = 'Saving' - let createRequestBody: CreateRequestBody = { - name: this.orgName - } + const createRequestBody: CreateRequestBody = {} if (this.baseAddress) { createRequestBody.mailingAddress = { ...this.baseAddress } } From 7d5c560a0caa8795448fedec454853e1c247be6d Mon Sep 17 00:00:00 2001 From: karthik-aot Date: Thu, 8 Jul 2021 17:48:51 -0700 Subject: [PATCH 2/2] reason display for on hold tasks --- .../staff/review-task/AccountInformation.vue | 2 +- .../auth/staff/review-task/AccountStatus.vue | 20 +++++++++++++++++-- auth-web/src/models/Task.ts | 1 + 3 files changed, 20 insertions(+), 3 deletions(-) diff --git a/auth-web/src/components/auth/staff/review-task/AccountInformation.vue b/auth-web/src/components/auth/staff/review-task/AccountInformation.vue index d82dae5bb6..15167bf7b2 100644 --- a/auth-web/src/components/auth/staff/review-task/AccountInformation.vue +++ b/auth-web/src/components/auth/staff/review-task/AccountInformation.vue @@ -75,7 +75,7 @@ export default class AccountInformation extends Vue { @Prop({ default: 'Account Information' }) private title: string @Prop({ default: {} }) accountUnderReview: any - @Prop({ default: {} }) accountUnderReviewAddress: Address + @Prop({ default: null }) accountUnderReviewAddress: Address AccessType = AccessType Account = Account diff --git a/auth-web/src/components/auth/staff/review-task/AccountStatus.vue b/auth-web/src/components/auth/staff/review-task/AccountStatus.vue index 4e0b19b117..cd8c50fa52 100644 --- a/auth-web/src/components/auth/staff/review-task/AccountStatus.vue +++ b/auth-web/src/components/auth/staff/review-task/AccountStatus.vue @@ -7,6 +7,12 @@ >{{ statusLabel }} + + Reason + + {{ accountOnHoldRemarks }} + + Approved By @@ -26,8 +32,8 @@