Fixed typo in task's status (#8274)

Related to #8100

---------

Co-authored-by: Félix Malfait <felix@twenty.com>
This commit is contained in:
BOHEUS
2024-11-01 10:33:30 +00:00
committed by GitHub
parent f70ed7fb5a
commit 6630fc4a6a
3 changed files with 3 additions and 3 deletions

View File

@ -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
},
{

View File

@ -105,7 +105,7 @@ export const tasksByStatusView = (
TASK_STANDARD_FIELD_IDS.status
],
isVisible: true,
fieldValue: 'IN_PROGESS',
fieldValue: 'IN_PROGRESS',
position: 1,
},
{

View File

@ -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',