Skip to content

Commit

Permalink
Fixed typo in task's status (twentyhq#8274)
Browse files Browse the repository at this point in the history
Related to twentyhq#8100

---------

Co-authored-by: Félix Malfait <[email protected]>
  • Loading branch information
BOHEUS and FelixMalfait authored Nov 1, 2024
1 parent f70ed7f commit 6630fc4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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
},
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ export const tasksByStatusView = (
TASK_STANDARD_FIELD_IDS.status
],
isVisible: true,
fieldValue: 'IN_PROGESS',
fieldValue: 'IN_PROGRESS',
position: 1,
},
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down

0 comments on commit 6630fc4

Please sign in to comment.