diff --git a/packages/twenty-front/src/testing/mock-data/generated/mock-metadata-query-result.ts b/packages/twenty-front/src/testing/mock-data/generated/mock-metadata-query-result.ts index 4c40df9f4..5ac38cba8 100644 --- a/packages/twenty-front/src/testing/mock-data/generated/mock-metadata-query-result.ts +++ b/packages/twenty-front/src/testing/mock-data/generated/mock-metadata-query-result.ts @@ -15272,7 +15272,7 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "id": "065d70d4-2840-4f1d-8ad1-2d5eac4e185e", "color": "purple", "label": "In progress", - "value": "IN_PROGESS", + "value": "IN_PROGRESS", "position": 1 }, { diff --git a/packages/twenty-server/src/engine/workspace-manager/standard-objects-prefill-data/views/tasks-by-status.view.ts b/packages/twenty-server/src/engine/workspace-manager/standard-objects-prefill-data/views/tasks-by-status.view.ts index e5e666565..3af1694d9 100644 --- a/packages/twenty-server/src/engine/workspace-manager/standard-objects-prefill-data/views/tasks-by-status.view.ts +++ b/packages/twenty-server/src/engine/workspace-manager/standard-objects-prefill-data/views/tasks-by-status.view.ts @@ -105,7 +105,7 @@ export const tasksByStatusView = ( TASK_STANDARD_FIELD_IDS.status ], isVisible: true, - fieldValue: 'IN_PROGESS', + fieldValue: 'IN_PROGRESS', position: 1, }, { diff --git a/packages/twenty-server/src/modules/task/standard-objects/task.workspace-entity.ts b/packages/twenty-server/src/modules/task/standard-objects/task.workspace-entity.ts index 39dc57c3a..e73190689 100644 --- a/packages/twenty-server/src/modules/task/standard-objects/task.workspace-entity.ts +++ b/packages/twenty-server/src/modules/task/standard-objects/task.workspace-entity.ts @@ -101,7 +101,7 @@ export class TaskWorkspaceEntity extends BaseWorkspaceEntity { options: [ { value: 'TODO', label: 'To do', position: 0, color: 'sky' }, { - value: 'IN_PROGESS', + value: 'IN_PROGRESS', label: 'In progress', position: 1, color: 'purple',