Fix: Dataset parse error (#12310)

### What problem does this PR solve?

Fix: Dataset parse error

### Type of change

- [x] Bug Fix (non-breaking change which fixes an issue)
This commit is contained in:
chanx
2025-12-30 13:08:20 +08:00
committed by GitHub
parent 59884ab0fb
commit 4037788e0c
7 changed files with 138 additions and 138 deletions

View File

@ -129,6 +129,7 @@ export const util = {
metaDataSettingJSONToMetaDataTableData(
data: IMetaDataReturnJSONSettings,
): IMetaDataTableData[] {
if (!Array.isArray(data)) return [];
return data.map((item) => {
return {
field: item.key,