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

Remove External Results; Remove unused references in Patient Registration Cypress Test #8737

Merged
merged 41 commits into from
Oct 8, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
41 commits
Select commit Hold shift + click to select a range
2712f56
Setup @ for imports
bodhish Oct 1, 2024
bae2f5d
Setup shadcn
bodhish Oct 1, 2024
3783809
Update title for sidebar
bodhish Oct 1, 2024
8b1f948
Use semibold for selected
bodhish Oct 1, 2024
69f698d
Add a border
bodhish Oct 1, 2024
1816200
Merge branch 'develop' into patient-form-rebuild
gigincg Oct 3, 2024
dd4f6f3
Revert changes in config
bodhish Oct 3, 2024
c8f4ff4
Fix logs
bodhish Oct 3, 2024
fdecae1
Fix Duration
gigincg Oct 3, 2024
0aa0c65
Remove height classes
bodhish Oct 3, 2024
3b85acd
Merge branch 'patient-form-rebuild' of github.com:ohcnetwork/care_fe …
bodhish Oct 3, 2024
17ee262
Minor height fix
bodhish Oct 3, 2024
11ad73a
Use ohc logo as default
bodhish Oct 4, 2024
a9f3b71
Add figtree font
bodhish Oct 4, 2024
ff07d94
Clean up breadcrumbs
bodhish Oct 4, 2024
0429377
Clean up external results import
bodhish Oct 4, 2024
723935c
Use gray instead on zinc
bodhish Oct 4, 2024
4a591f8
Add toaster
bodhish Oct 8, 2024
e321e66
Add a page for icons in development
bodhish Oct 8, 2024
70a36ad
Move back button to breadcrumbs
bodhish Oct 8, 2024
73ee702
More changes
bodhish Oct 8, 2024
fa881da
Remove inter
bodhish Oct 8, 2024
4a07d8d
Add alert
bodhish Oct 8, 2024
a037ff4
Merge Locale files
gigincg Oct 8, 2024
3d5479d
Merge branch 'patient-form-rebuild-attempt-2' of https://github.com/o…
gigincg Oct 8, 2024
475c46f
Add initial avatar for facility
bodhish Oct 8, 2024
516c593
Merge branch 'develop' into patient-form-rebuild-attempt-2
bodhish Oct 8, 2024
06da1f9
Remove duplicate
bodhish Oct 8, 2024
1d989f6
update lockfile
rithviknishad Oct 8, 2024
26df9dd
update lockfile
rithviknishad Oct 8, 2024
1e61118
Update package lock
bodhish Oct 8, 2024
d1b93ef
Merge branch 'patient-form-rebuild-attempt-2' of github.com:ohcnetwor…
bodhish Oct 8, 2024
efee7f1
Solve Compilation issues
gigincg Oct 8, 2024
fe61f04
Remove unused references
rithviknishad Oct 8, 2024
a6af629
Add avatar for patients
bodhish Oct 8, 2024
96c9824
Purge External Results
gigincg Oct 8, 2024
7a649a9
Merge branch 'patient-form-rebuild-attempt-2' into rithviknishad/fix/…
gigincg Oct 8, 2024
3d591cc
Cleanup package-lock
gigincg Oct 8, 2024
bd8e3fb
remove external results cypress test and unused references
rithviknishad Oct 8, 2024
60cc46b
Switch Loading and PageTitle to static imports
gigincg Oct 8, 2024
3e87d7e
Merge branch 'rithviknishad/fix/remove-unused-references' of https://…
gigincg Oct 8, 2024
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
Prev Previous commit
Next Next commit
Merge Locale files
  • Loading branch information
gigincg committed Oct 8, 2024
commit a037ff4530762f7dbd5a9bc6ba503294709f05fc
14 changes: 7 additions & 7 deletions src/Components/DeathReport/DeathReport.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -333,7 +333,7 @@ export default function PrintDeathReport(props: { id: string }) {
previewData()
) : (
<Page
title={"Covid-19 Death Reporting : Form 1"}
title={t("covid_19_death_reporting_form_1")}
crumbsReplacements={{
[props.id]: { name: patientName },
death_report: { style: "pointer-events-none" },
Expand Down Expand Up @@ -403,15 +403,15 @@ export default function PrintDeathReport(props: { id: string }) {
<TextFormField
{...field("is_declared_positive")}
type="text"
label="Whether declared positive"
label={t("is_declared_positive")}
/>
</div>
</div>
<div className="md:mt-4 md:grid md:grid-cols-2 md:gap-10">
<div>
<DateFormField
{...field("date_declared_positive")}
label="Date of declaring positive"
label={t("date_declared_positive")}
position="LEFT"
className="w-full"
disableFuture
Expand All @@ -421,22 +421,22 @@ export default function PrintDeathReport(props: { id: string }) {
<TextFormField
{...field("test_type")}
type="text"
label="Type of test done"
label={t("test_type")}
/>
</div>
</div>
<div className="md:mt-4 md:grid md:grid-cols-2 md:gap-10">
<div>
<DateFormField
{...field("date_of_test")}
label="Date of sample collection for Covid testing"
label={t("date_of_test")}
position="LEFT"
/>
</div>
<div>
<DateFormField
{...field("date_of_result")}
label="Covid confirmation date"
label={t("date_of_result")}
position="LEFT"
disableFuture
/>
Expand All @@ -454,7 +454,7 @@ export default function PrintDeathReport(props: { id: string }) {
<TextFormField
{...field("is_vaccinated")}
type="text"
label="Whether vaccinated"
label={t("is_vaccinated")}
/>
</div>
</div>
Expand Down
Loading