From a562ce5610c9d68de9a4484f133f39191a929cf3 Mon Sep 17 00:00:00 2001 From: wangruidong <940853815@qq.com> Date: Wed, 20 Dec 2023 19:18:44 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E8=B4=A6=E5=8F=B7=E5=A4=87=E4=BB=BD?= =?UTF-8?q?=E5=BC=80=E5=90=AF=E6=8B=86=E5=88=86=E4=B8=A4=E9=83=A8=E5=88=86?= =?UTF-8?q?=E5=90=8E=E5=86=8D=E5=85=B3=E9=97=AD=E8=BF=98=E6=98=AF=E4=BC=9A?= =?UTF-8?q?=E6=8B=86=E6=88=90=E4=B8=A4=E4=BB=BD=E5=8F=91=E9=80=81=E9=82=AE?= =?UTF-8?q?=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../accounts/AccountBackup/AccountBackupCreateUpdate.vue | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/views/accounts/AccountBackup/AccountBackupCreateUpdate.vue b/src/views/accounts/AccountBackup/AccountBackupCreateUpdate.vue index e78aab3e5..c9246413a 100644 --- a/src/views/accounts/AccountBackup/AccountBackupCreateUpdate.vue +++ b/src/views/accounts/AccountBackup/AccountBackupCreateUpdate.vue @@ -80,6 +80,12 @@ export default { if (data['interval'] === '') { delete data['interval'] } + if (!data?.is_password_divided_by_email) { + data['recipients_part_two'] = [] + } + if (!data?.is_password_divided_by_obj_storage) { + data['obj_recipients_part_two'] = [] + } return data } }