Skip to content

Commit

Permalink
[#827] Grid empty row 표시 및 스타일 관련 수정
Browse files Browse the repository at this point in the history
###########################
- length 관련 조건문 수정
  • Loading branch information
kimyell1023 committed Jun 14, 2021
1 parent 2a7712d commit 9a28b1e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/grid/Grid.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 9a28b1e

Please sign in to comment.