diff --git a/packages/plugins/@nocobase/plugin-data-source-manager/src/client/component/MainDataSourceManager/Configuration/schemas/collections.ts b/packages/plugins/@nocobase/plugin-data-source-manager/src/client/component/MainDataSourceManager/Configuration/schemas/collections.ts index 56dbb6a9b8..6811412cb4 100644 --- a/packages/plugins/@nocobase/plugin-data-source-manager/src/client/component/MainDataSourceManager/Configuration/schemas/collections.ts +++ b/packages/plugins/@nocobase/plugin-data-source-manager/src/client/component/MainDataSourceManager/Configuration/schemas/collections.ts @@ -187,8 +187,8 @@ export const collectionTableSchema: ISchema = { return { async move(from, to) { await api.resource('collections').move({ - sourceId: from.key, - targetId: to.key, + sourceId: from.name, + targetId: to.name, }); message.success(t('Saved successfully'), 0.2); },