Skip to content

Commit

Permalink
handled incorrect redirection after adding lab result and aligned vie…
Browse files Browse the repository at this point in the history
…w and print button correctly
  • Loading branch information
Mahendar0701 committed Oct 22, 2024
1 parent b1a1fad commit b2e383f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ export default function ViewInvestigations(props: {
<div>
{formatDateTime(investigationSession.session_created_date)}
</div>
<div className="space-x-2">
<div className="flex items-center space-x-2">
<ButtonV2
onClick={() =>
navigate(
Expand Down
2 changes: 1 addition & 1 deletion src/Components/Facility/Investigations/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ const Investigation = (props: {
msg: "Investigation created successfully!",
});
navigate(
`/facility/${props.facilityId}/patient/${props.patientId}/consultation/${props.consultationId}`,
`/facility/${props.facilityId}/patient/${props.patientId}/consultation/${props.consultationId}/investigations`,
);
} else {
setSaving(false);
Expand Down

0 comments on commit b2e383f

Please sign in to comment.