fix: missing sort field selection when duplicating records

This commit is contained in:
katherinehhh 2025-06-25 14:33:07 +08:00
parent a9bd6f7844
commit 41bd891811

View File

@ -61,7 +61,7 @@ export const useCollectionState = (currentCollectionName: string, displayType =
if (!field.interface) {
return;
}
if (['sort', 'password', 'sequence'].includes(field.type)) {
if (['password', 'sequence'].includes(field.type)) {
return;
}
if (filterFields && filterFields(field)) {