Skip to content

Commit

Permalink
Changed ticket status values: open,close -> OPEN,CLOSE
Browse files Browse the repository at this point in the history
  • Loading branch information
alxford45 committed Nov 29, 2020
1 parent 5d0e7ae commit 5f6b2d9
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions client/src/components/form/selectOptions.js
Original file line number Diff line number Diff line change
Expand Up @@ -291,8 +291,9 @@ export const selectOptions = [
{
name: "status",
options: [
{ value: "open", text: "Open" },
{ value: "closed", text: "Closed" },
/* Status must be OPEN or CLOSE for db */
{ value: "OPEN", text: "Open" },
{ value: "CLOSE", text: "Closed" },
],
},
];

0 comments on commit 5f6b2d9

Please sign in to comment.