diff --git a/client/src/components/form/selectOptions.js b/client/src/components/form/selectOptions.js index 2ffe608..719caa2 100644 --- a/client/src/components/form/selectOptions.js +++ b/client/src/components/form/selectOptions.js @@ -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" }, ], }, ];