Fixed typo in task's status (#8274)
Related to #8100 --------- Co-authored-by: Félix Malfait <felix@twenty.com>
This commit is contained in:
@ -15272,7 +15272,7 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery =
|
|||||||
"id": "065d70d4-2840-4f1d-8ad1-2d5eac4e185e",
|
"id": "065d70d4-2840-4f1d-8ad1-2d5eac4e185e",
|
||||||
"color": "purple",
|
"color": "purple",
|
||||||
"label": "In progress",
|
"label": "In progress",
|
||||||
"value": "IN_PROGESS",
|
"value": "IN_PROGRESS",
|
||||||
"position": 1
|
"position": 1
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|||||||
@ -105,7 +105,7 @@ export const tasksByStatusView = (
|
|||||||
TASK_STANDARD_FIELD_IDS.status
|
TASK_STANDARD_FIELD_IDS.status
|
||||||
],
|
],
|
||||||
isVisible: true,
|
isVisible: true,
|
||||||
fieldValue: 'IN_PROGESS',
|
fieldValue: 'IN_PROGRESS',
|
||||||
position: 1,
|
position: 1,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|||||||
@ -101,7 +101,7 @@ export class TaskWorkspaceEntity extends BaseWorkspaceEntity {
|
|||||||
options: [
|
options: [
|
||||||
{ value: 'TODO', label: 'To do', position: 0, color: 'sky' },
|
{ value: 'TODO', label: 'To do', position: 0, color: 'sky' },
|
||||||
{
|
{
|
||||||
value: 'IN_PROGESS',
|
value: 'IN_PROGRESS',
|
||||||
label: 'In progress',
|
label: 'In progress',
|
||||||
position: 1,
|
position: 1,
|
||||||
color: 'purple',
|
color: 'purple',
|
||||||
|
|||||||
Reference in New Issue
Block a user