Skip to content

Commit

Permalink
ill requests: improve status display
Browse files Browse the repository at this point in the history
* Changes status label and adds a loan_status value for clarity.

Co-Authored-by: Pascal Repond <[email protected]>
  • Loading branch information
PascalRepond committed Nov 9, 2023
1 parent 335e6c0 commit 4b69524
Showing 1 changed file with 7 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
},
"status": {
"type": "string",
"title": "Status",
"title": "Request status",
"enum": [
"pending",
"validated",
Expand Down Expand Up @@ -109,7 +109,8 @@
"PENDING",
"ITEM_AT_DESK",
"ITEM_ON_LOAN",
"ITEM_RETURNED"
"ITEM_RETURNED",
"CANCELLED"
],
"default": "PENDING",
"form": {
Expand All @@ -130,6 +131,10 @@
{
"value": "ITEM_RETURNED",
"label": "ITEM_RETURNED"
},
{
"value": "CANCELLED",
"label": "CANCELLED"
}
]
}
Expand Down

0 comments on commit 4b69524

Please sign in to comment.