Fix milestone entity display and validation

This commit is contained in:
gpt-engineer-app[bot]
2025-10-15 20:13:29 +00:00
parent ae255bd73c
commit 35e988fba2
2 changed files with 21 additions and 1 deletions

View File

@@ -33,7 +33,7 @@ export function SpecialFieldDisplay({ change, compact = false }: SpecialFieldDis
return <DateFieldDisplay change={change} compact={compact} />;
}
if (fieldName.includes('_id') && fieldName !== 'id' && fieldName !== 'user_id') {
if (fieldName.includes('_id') && fieldName !== 'id' && fieldName !== 'user_id' && fieldName !== 'entity_id') {
return <RelationshipFieldDisplay change={change} compact={compact} />;
}