From 1665e6ebcaa5395159461da873c6ae4ca491d75f Mon Sep 17 00:00:00 2001 From: "Austin.Duan" Date: Wed, 8 Feb 2023 11:43:55 +0800 Subject: [PATCH] =?UTF-8?q?REPORT-89173=20fix:=20=E9=80=82=E9=85=8D?= =?UTF-8?q?=E4=B8=8B=E6=8E=A5=E5=8F=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/modules/pages/database/database.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/pages/database/database.ts b/src/modules/pages/database/database.ts index 7779006..b955b64 100644 --- a/src/modules/pages/database/database.ts +++ b/src/modules/pages/database/database.ts @@ -266,6 +266,6 @@ export class Datebase extends BI.Widget { // 获取JNDI private async getDatabaseTypeLimit() { const result = await api.getJNDIDatabaseStatus(); - this.store.setJNDILimit(result); + this.store.setJNDILimit(result.data); } }