From bb12eb6cdc33290876a9b728d6fc7f54aa4bda4c Mon Sep 17 00:00:00 2001 From: alan Date: Tue, 8 Oct 2019 17:28:30 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20DEC-10156=20=E4=BF=AE=E6=94=B9=E6=95=B0?= =?UTF-8?q?=E6=8D=AE=E8=BF=9E=E6=8E=A5=E6=B1=A0=E5=88=86=E9=A1=B5=E7=9A=84?= =?UTF-8?q?bug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/modules/pages/connection_pool/connection_pool.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/pages/connection_pool/connection_pool.ts b/src/modules/pages/connection_pool/connection_pool.ts index 7a8ada5..052f46d 100644 --- a/src/modules/pages/connection_pool/connection_pool.ts +++ b/src/modules/pages/connection_pool/connection_pool.ts @@ -51,7 +51,7 @@ export class ConnectionPool extends BI.Widget { itemsCreator: (options: {times: number}, populate) => { populate(this.renderList((options.times - 1) * 50, options.times * 50)); }, - hasNext: options => options.times * 50 < BI.size(this.model.connections), + hasNext: options => options.times * 50 < BI.size(this.model.connectionJDBC), }, ], },