fix: 修复管理端类型检查错误

- 为分页数据列表补充明确行类型

- 修正插件数组默认值解析的类型转换

- 删除 tinyflow 未使用辅助函数
This commit is contained in:
2026-05-18 10:00:41 +08:00
parent 2907acac95
commit b7f3ae2854
3 changed files with 8 additions and 9 deletions

View File

@@ -171,10 +171,6 @@ function isCollectionOutputParameter(parameter?: Parameter | null) {
);
}
function getCollectionDisplayName(label: string) {
return label.endsWith('.[]') ? label : `${label}.[]`;
}
function buildCollectionAwareLabel(
referenceLabel: string,
parentLabel: string,