Skip to content

Commit

Permalink
Merge pull request #2472 from Pranshu1902/issue#2471
Browse files Browse the repository at this point in the history
Fixes Issue#2471
  • Loading branch information
khavinshankar authored Jun 3, 2022
2 parents 4169344 + 9da3089 commit 714d2ce
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 7 deletions.
1 change: 0 additions & 1 deletion .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,6 @@ jobs:
cd kube/deployments/
sed -i -e "s/_BUILD_NUMBER_/${GITHUB_RUN_NUMBER}/g" care-fe.yaml
kubectl apply -f care-fe.yaml
deploy-production-manipur:
needs: build-production
name: Deploy to GKE Manipur
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ import Pagination from "../../Common/Pagination";
import { PAGINATION_LIMIT } from "../../../Common/constants";

export const PrimaryParametersPlot = (props: any) => {
const { consultationId } = props;
const dispatch: any = useDispatch();
const [results, setResults] = useState({});
const [currentPage, setCurrentPage] = useState(1);
Expand All @@ -36,7 +35,7 @@ export const PrimaryParametersPlot = (props: any) => {
"rhythm_detail",
],
},
{ consultationId }
props.consultationId
)
);
if (!status.aborted) {
Expand All @@ -46,14 +45,14 @@ export const PrimaryParametersPlot = (props: any) => {
}
}
},
[consultationId, dispatch, currentPage]
[props.consultationId, dispatch, currentPage]
);

useAbortableEffect(
(status: statusType) => {
fetchDailyRounds(status);
},
[consultationId, currentPage]
[props.consultationId, currentPage]
);

const handlePagination = (page: number) => {
Expand Down
2 changes: 1 addition & 1 deletion src/Components/Facility/HospitalList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -534,7 +534,7 @@ export const HospitalList = (props: any) => {

<div className="flex justify-end w-full mt-4">
<div>
<Accordion className="mt-2 lg:mt-0 md:mt-0">
<Accordion className="mt-10 lg:mt-0 md:mt-0 sm:mt-0">
<AccordionSummary
expandIcon={<ExpandMoreIcon />}
aria-controls="panel1a-content"
Expand Down
1 change: 1 addition & 0 deletions src/Components/Patient/FileUpload.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -669,6 +669,7 @@ export const FileUpload = (props: FileUploadProps) => {
startIcon={
<CloudUploadOutlineIcon>save</CloudUploadOutlineIcon>
}

onClick={() => {
handleAudioUpload();
}}
Expand Down
2 changes: 1 addition & 1 deletion src/Components/Users/ManageUsers.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ export default function ManageUsers() {

const addUser = (
<button
className="px-4 py-1 rounded-md bg-primary-500 mt-4 text-white text-lg font-semibold rounded shadow"
className="px-4 py-1 rounded-md bg-primary-500 mt-4 text-white text-lg font-semibold shadow"
onClick={() => navigate("/user/add")}
>
<i className="fas fa-plus mr-2"></i>
Expand Down

0 comments on commit 714d2ce

Please sign in to comment.