diff --git a/packages/core/client/src/schema-settings/DataTemplates/hooks/useCollectionState.ts b/packages/core/client/src/schema-settings/DataTemplates/hooks/useCollectionState.ts index e189fa19b..fa4688b8a 100644 --- a/packages/core/client/src/schema-settings/DataTemplates/hooks/useCollectionState.ts +++ b/packages/core/client/src/schema-settings/DataTemplates/hooks/useCollectionState.ts @@ -71,6 +71,9 @@ export const useCollectionState = (currentCollectionName: string) => { if (!field.interface) { return; } + if (['sort', 'password', 'sequence'].includes(field.type)) { + return; + } const node = { type: 'duplicate', tag: compile(field.uiSchema?.title) || field.name,