Skip to content

Commit

Permalink
status:removing the order status translations
Browse files Browse the repository at this point in the history
  • Loading branch information
gitcliff committed Feb 1, 2024
1 parent b44fc0a commit b356390
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 15 deletions.
14 changes: 7 additions & 7 deletions src/queue-list/laboratory-patient-list.component.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -48,13 +48,13 @@ const LaboratoryPatientList: React.FC<LaboratoryPatientListProps> = () => {
const { t } = useTranslation();

const OrderStatuses = [
t("all", "All"),
t("received", "RECEIVED"),
t("inProgressOrder", "IN_PROGRESS"),
t("completedOrder", "COMPLETED"),
t("exception", "EXCEPTION"),
t("on_hold", "ON_HOLD"),
t("decline", "DECLINED"),
"All",
"RECEIVED",
"IN_PROGRESS",
"COMPLETED",
"EXCEPTION",
"ON_HOLD",
"DECLINED",
];

const [activatedOnOrAfterDate, setActivatedOnOrAfterDate] = useState("");
Expand Down
9 changes: 1 addition & 8 deletions translations/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,5 @@
"worklist": "Worklist",
"rejectOrder": "Reject Order",
"pickLabRequest": "Pick Lab Request",
"filterOrdersByStatus": "Filter Orders by status",
"inProgressOrder": "IN_PROGRESS",
"received": "RECEIVED",
"all": "All",
"completedOrder": "COMPLETED",
"exception": "EXCEPTION",
"onHold": "ON_HOLD",
"decline": "DECLINED"
"filterOrdersByStatus": "Filter Orders by status"
}

0 comments on commit b356390

Please sign in to comment.