From 9a28b1e7dcaf4043841a08c32ad8525bc3fc11d2 Mon Sep 17 00:00:00 2001 From: yell Date: Mon, 14 Jun 2021 15:17:29 +0900 Subject: [PATCH] =?UTF-8?q?[#827]=20Grid=20empty=20row=20=ED=91=9C?= =?UTF-8?q?=EC=8B=9C=20=EB=B0=8F=20=EC=8A=A4=ED=83=80=EC=9D=BC=20=EA=B4=80?= =?UTF-8?q?=EB=A0=A8=20=EC=88=98=EC=A0=95=20###########################=20?= =?UTF-8?q?-=20length=20=EA=B4=80=EB=A0=A8=20=EC=A1=B0=EA=B1=B4=EB=AC=B8?= =?UTF-8?q?=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/grid/Grid.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/grid/Grid.vue b/src/components/grid/Grid.vue index 8e34afe7b..e884827b9 100644 --- a/src/components/grid/Grid.vue +++ b/src/components/grid/Grid.vue @@ -618,7 +618,7 @@ export default { store = stores.searchStore; checkSize = checkInfo.checkedIndex.size; } - if (store.length > 0 && checkSize >= store.length) { + if (store.length && checkSize >= store.length) { checkInfo.isHeaderChecked = true; } else { checkInfo.isHeaderChecked = false;