Skip to content

Commit

Permalink
(refactor)updated accordance with PR suggestion
Browse files Browse the repository at this point in the history
  • Loading branch information
its-kios09 committed Sep 19, 2024
1 parent ae1cc33 commit d7e7a06
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/radiology-tabs/common/groupedOrdersTable.component.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -83,14 +83,14 @@ const GroupedOrdersTable: React.FC<GroupedOrdersTableProps> = (props) => {
);

const columns = [
{ id: 0, header: t("patient", "Patient"), key: "patientname" },
{ id: 0, header: t("patientName", "Patient Name"), key: "patientname" },
{ id: 1, header: t("totalorders", "Total Orders"), key: "totalorders" },
];

if (showActionColumn) {
columns.push({
id: 2,
header: t("actionButton", "Action"),
header: t("action", "Action"),
key: "action",
});
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@
justify-content: center;
text-align: center;
padding: 0 layout.$spacing-04;
gap: 1rem;
gap: layout.$spacing-05;
}

0 comments on commit d7e7a06

Please sign in to comment.