@things-factory/meta-ui 7.1.24 → 7.1.27

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1367,8 +1367,8 @@ export class MetaUiUtil {
1367
1367
  return
1368
1368
  }
1369
1369
 
1370
- // 그리스트 데이터 존재 여부
1371
- if ((grist.data ? grist.data.records : []).length == 0) {
1370
+ // 그리스트 데이터 존재 여부 (편집중 데이터도 체크)
1371
+ if ((grist?.data?.records || []).length == 0 && (grist?.dirtyData?.records || []).length == 0) {
1372
1372
  // 비어있는 그리드 입니다.
1373
1373
  UiUtil.showAlertPopup('title.info', 'text.grid_data_is_empty', 'info', 'confirm')
1374
1374
  return