From 6bfa8a35ed77ebaa98298336a4e71a6cfe12044b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E1=84=8B=E1=85=B5=E1=84=89=E1=85=B3=E1=86=BC=E1=84=8B?= =?UTF-8?q?=E1=85=A7=E1=86=AB?= Date: Wed, 23 Apr 2025 17:22:10 +0900 Subject: [PATCH] fix: fix major bug about service account manager MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: 이승연 --- .../components/ServiceAccountBaseInformationForm.vue | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/apps/web/src/services/service-account/components/ServiceAccountBaseInformationForm.vue b/apps/web/src/services/service-account/components/ServiceAccountBaseInformationForm.vue index d7a4319410..a2a145cf27 100644 --- a/apps/web/src/services/service-account/components/ServiceAccountBaseInformationForm.vue +++ b/apps/web/src/services/service-account/components/ServiceAccountBaseInformationForm.vue @@ -88,7 +88,6 @@ const state = reactive({ })), isSameValueWithOrigin: computed(() => isEqual(state.formData, state.originForm)), isAllValid: computed(() => ((invalidState.serviceAccountName === false) - && (state.serviceAccountManagerId !== '') && !state.isSameValueWithOrigin && (serviceAccountPageGetters.isTrustedAccount ? true : (state.isProjectFormValid || state.originForm?.projectForm?.selectedProjectId)) && state.isTagsValid @@ -104,7 +103,7 @@ const initFormData = (originForm: Partial) => { // init validation state.isCustomSchemaFormValid = true; state.projectForm.selectedProjectId = originForm?.projectForm?.selectedProjectId; - state.serviceAccountManagerId = originForm?.serviceAccountManagerId; + state.serviceAccountManagerId = originForm?.serviceAccountManagerId ?? ''; }; /* Api */