Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

(fix) [O3-3202] Delete Action column #72

Merged
merged 2 commits into from
Jun 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions src/components/orders-table/orders-data-table.component.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,6 @@
},
{ key: "patient", header: t("patient", "Patient") },
{ key: "test", header: t("test", "Test") },
{ key: "action", header: t("action", "Action") },
{ key: "status", header: t("status", "Status") },
{ key: "orderedBy", header: t("orderedBy", "Ordered By") },
{ key: "urgency", header: t("urgency", "Urgency") },
Expand Down Expand Up @@ -141,7 +140,6 @@
),
orderNumber: order.orderNumber,
test: order.concept?.display,
action: order.action,
status: (
<span
className={styles.statusContainer}
Expand Down Expand Up @@ -177,7 +175,7 @@
rows={tableRows}
headers={columns}
useZebraStyles
overflowMenuOnHover={true}

Check warning on line 178 in src/components/orders-table/orders-data-table.component.tsx

View workflow job for this annotation

GitHub Actions / build

React Hook useMemo has a missing dependency: 'fulfillerStatus'. Either include it or remove the dependency array
>
{({
rows,
Expand Down
2 changes: 1 addition & 1 deletion translations/am.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
{
"action": "Action",
"actions": "Actions",
"all": "All",
"allFieldsRequired": "All fields are required",
Expand All @@ -22,6 +21,7 @@
"laboratory": "Laboratory",
"labResultsForm": "Lab Results Form",
"loading": "Loading",
"modification": "Modification",
"newStatus": "NEW",
"nextPage": "Next page",
"noLabRequestsFoundCheckFilters": "No lab requests found. Please check your filters and try again.",
Expand Down
2 changes: 1 addition & 1 deletion translations/en.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
{
"action": "Action",
"actions": "Actions",
"all": "All",
"allFieldsRequired": "All fields are required",
Expand All @@ -22,6 +21,7 @@
"laboratory": "Laboratory",
"labResultsForm": "Lab Results Form",
"loading": "Loading",
"modification": "Modification",
"newStatus": "NEW",
"nextPage": "Next page",
"noLabRequestsFoundCheckFilters": "No lab requests found. Please check your filters and try again.",
Expand Down
2 changes: 1 addition & 1 deletion translations/es.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
{
"action": "Action",
"actions": "Actions",
"all": "All",
"allFieldsRequired": "All fields are required",
Expand All @@ -22,6 +21,7 @@
"laboratory": "Laboratory",
"labResultsForm": "Lab Results Form",
"loading": "Cargando",
"modification": "Modification",
"newStatus": "NEW",
"nextPage": "Next page",
"noLabRequestsFoundCheckFilters": "No lab requests found. Please check your filters and try again.",
Expand Down
2 changes: 1 addition & 1 deletion translations/fr.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
{
"action": "Action",
"actions": "Actions",
"all": "All",
"allFieldsRequired": "All fields are required",
Expand All @@ -22,6 +21,7 @@
"laboratory": "Laboratory",
"labResultsForm": "Lab Results Form",
"loading": "Chargement",
"modification": "Modification",
"newStatus": "NEW",
"nextPage": "Next page",
"noLabRequestsFoundCheckFilters": "No lab requests found. Please check your filters and try again.",
Expand Down
2 changes: 1 addition & 1 deletion translations/he.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
{
"action": "Action",
"actions": "Actions",
"all": "All",
"allFieldsRequired": "All fields are required",
Expand All @@ -22,6 +21,7 @@
"laboratory": "Laboratory",
"labResultsForm": "Lab Results Form",
"loading": "Loading",
"modification": "Modification",
"newStatus": "NEW",
"nextPage": "Next page",
"noLabRequestsFoundCheckFilters": "No lab requests found. Please check your filters and try again.",
Expand Down
2 changes: 1 addition & 1 deletion translations/km.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
{
"action": "Action",
"actions": "Actions",
"all": "All",
"allFieldsRequired": "All fields are required",
Expand All @@ -22,6 +21,7 @@
"laboratory": "Laboratory",
"labResultsForm": "Lab Results Form",
"loading": "Loading",
"modification": "Modification",
"newStatus": "NEW",
"nextPage": "Next page",
"noLabRequestsFoundCheckFilters": "No lab requests found. Please check your filters and try again.",
Expand Down
Loading