### Summary This pull request addresses issue #9805 by removing the default value `'Untitled'` for the `name` field in the `CustomWorkspaceEntity` class. ### Details - Removed the default value `'Untitled'` for the `name` field. - This change ensures that new records do not have an empty or default name. - Ensures consistency across different standard object records. ### Issue This pull request resolves issue #9805. ### Testing Tested the creation of new records to ensure that the `name` field is now correctly handled without a default value. Co-authored-by: Félix Malfait <felix.malfait@gmail.com>
This commit is contained in:
@ -43,7 +43,6 @@ export class CustomWorkspaceEntity extends BaseWorkspaceEntity {
|
||||
description: 'Name',
|
||||
type: FieldMetadataType.TEXT,
|
||||
icon: 'IconAbc',
|
||||
defaultValue: "'Untitled'",
|
||||
})
|
||||
name: string;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user