From d0656e9df39dc14835971e614df7f76030e23134 Mon Sep 17 00:00:00 2001 From: Dajeong-Park Date: Thu, 28 May 2026 08:53:51 +0900 Subject: [PATCH] =?UTF-8?q?=EB=B0=B1=EC=97=85=20=EC=98=A4=ED=8D=BC?= =?UTF-8?q?=EB=A7=81=20=EA=B0=80=EC=A0=B8=EC=98=A4=EA=B8=B0=20=EC=98=A4?= =?UTF-8?q?=EB=A5=98=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ui/src/views/offering/ImportBackupOffering.vue | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/ui/src/views/offering/ImportBackupOffering.vue b/ui/src/views/offering/ImportBackupOffering.vue index cf6d00634924..1c2eb83d96ea 100644 --- a/ui/src/views/offering/ImportBackupOffering.vue +++ b/ui/src/views/offering/ImportBackupOffering.vue @@ -245,6 +245,10 @@ export default { this.useCommvault = false return } + if (!this.isCommvaultProvider) { + this.useCommvault = false + return + } const json = await api('listBackupOfferings') const backupOff = json.listbackupofferingsresponse.backupoffering || [] @@ -296,7 +300,7 @@ export default { if (this.loading) return this.formRef.value.validate().then(async () => { await this.checkBackupOffering() - if (this.useCommvault) { + if (this.isCommvaultProvider && this.useCommvault) { this.$notification.error({ message: this.$t('message.request.failed'), description: this.$t('message.error.import.backup.offering')