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

Minor Fix of Patient History BreadCrumb #810

Merged
merged 7 commits into from
Mar 19, 2024
Merged
Show file tree
Hide file tree
Changes from 6 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
5 changes: 4 additions & 1 deletion frontend/src/components/patient/PatientHistory.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,11 @@ import { Heading, Grid, Column, Section } from "@carbon/react";
import SearchPatientForm from "./SearchPatientForm";
import { useState, useEffect, useRef } from "react";
import PageBreadCrumb from "../common/PageBreadCrumb";
let breadcrumbs = [{ label: "home.label", link: "/" }];

let breadcrumbs = [
{ label: "home.label", link: "/" },
{ label: "patient.label.PatientHistory", link: "/PatientHistory" },
];
const PatientHistory = () => {
const [selectedPatient, setSelectedPatient] = useState({});
const componentMounted = useRef(false);
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/languages/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
"login.msg.password.missing": "A password is required",
"login.notice.message": "Notice: Access to this service is for authorized personnel only. If you do not have the expressed authorization of the administrator, you must exit now. This organization prohibits unauthorized access, disclosure, duplication, modification, diversion, destruction, loss, misuse, or theft of its information.",
"error.invalidcredentials": "Username or Password are incorrect",
"patient.label.modify" : "Add/Modify Patient" ,
"patient.label.modify" :"Add Or Modify Patient" ,
"patient.label.info" : "Patient Information",
"breadcrumb.home" : "Home",
"admin.legacy" :"Legacy Admin",
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/languages/fr.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
"login.msg.password.missing": "Votre mot de passe requis",
"login.notice.message": "Veuillez entrer dans le logiciel de Syst\u00E8me d'Information \u00C9lectronique de Laboratoire:",
"error.invalidcredentials": "L'identifiant ou le mot de passe est incorrect",
"patient.label.modify" : "Ajouter/Modifier un patient" ,
"patient.label.modify" : "Ajouter ou modifier un patient" ,
"patient.label.info" : "Informations sur les patients",
"breadcrumb.home" : "Domicile",
"admin.legacy" :"Précédent Admin",
Expand Down
Loading