From d6e6b33ccf369a43ed656c3f739e979d33038df1 Mon Sep 17 00:00:00 2001 From: imp Date: Tue, 24 Nov 2020 16:33:16 +0800 Subject: [PATCH] =?UTF-8?q?=E6=97=A0jira=E4=BB=BB=E5=8A=A1=20=E4=BC=98?= =?UTF-8?q?=E5=8C=96cls?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/base/collection/collection.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/base/collection/collection.js b/src/base/collection/collection.js index bfe2652f5..baaedb78e 100644 --- a/src/base/collection/collection.js +++ b/src/base/collection/collection.js @@ -181,7 +181,7 @@ BI.CollectionView = BI.inherit(BI.Widget, { width: datum.width, height: datum.height }, o.items[datum.index], { - cls: (o.items[datum.index].cls || "") + " container-cell" + (datum.y === 0 ? " first-row" : "") + (datum.x === 0 ? " first-col" : ""), + cls: (o.items[datum.index].cls || "") + " collection-cell" + (datum.y === 0 ? " first-row" : "") + (datum.x === 0 ? " first-col" : ""), _left: datum.x, _top: datum.y }));