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

[HAPP-1867] Handle date and title errors #583

Merged
merged 31 commits into from
Apr 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
e458279
HAPP-1868: Handle special authority with no title
bsavoini-ey Mar 7, 2024
4b0a57f
HAPP-1871: Help Screen for LabResults
bsavoini-ey Mar 7, 2024
d5abd24
HAPP-1867: Handle date parsing error
bsavoini-ey Mar 7, 2024
2d0f275
Version 2.1.0-236
bsavoini-ey Mar 7, 2024
8b6f197
HAPP-1883: Update 'Get checked online' url & copy
bsavoini-ey Mar 18, 2024
1336daf
HAPP-1881: Display custom banner for ImgReporting
bsavoini-ey Mar 18, 2024
6b693ac
Version 2.1.0-237
bsavoini-ey Mar 18, 2024
bed8d96
HAPP-1867: Fix error message for date
bsavoini-ey Mar 22, 2024
6146c73
Update README.md
bsavoini-ey Mar 22, 2024
10b6774
HAPP-1887: Remove test summary from labResults
bsavoini-ey Mar 22, 2024
b3d3872
Version 2.2.0-238
bsavoini-ey Mar 22, 2024
e5de819
Revert "HAPP-1867: Fix error message for date"
bsavoini-ey Apr 3, 2024
e21d378
[HAPP-1867] Revert date parsing error
bsavoini-ey Apr 3, 2024
4e8da29
Update BaseDataBaseTest.kt
bsavoini-ey Apr 3, 2024
bc0d4ce
[HAPP-1867] Handle HospitalVisits
bsavoini-ey Apr 4, 2024
fa00171
[HAPP-1867] Handle ClinicalDocuments
bsavoini-ey Apr 4, 2024
417efa4
[HAPP-1867] Handle Medication
bsavoini-ey Apr 4, 2024
6dd4831
[HAPP-1867] Handle LabOrder
bsavoini-ey Apr 4, 2024
1a08c7a
[HAPP-1867] Handle CovidTest
bsavoini-ey Apr 4, 2024
c8fc6bf
[HAPP-1867] Handle Immunization
bsavoini-ey Apr 4, 2024
9d75ffb
[HAPP-1867] Handle HealthVisitsDto
bsavoini-ey Apr 4, 2024
30cc1c7
[HAPP-1867] Handle SpecialAuthority
bsavoini-ey Apr 4, 2024
01bf1a3
[HAPP-1867] Handle diagnosticImaging
bsavoini-ey Apr 4, 2024
f386a08
[HAPP-1867] Handle CancerScreening
bsavoini-ey Apr 4, 2024
ec31b4c
[HAPP-1867] Fix Medication description date format
bsavoini-ey Apr 4, 2024
b864e6a
[HAPP-1867] Display date error message
bsavoini-ey Apr 4, 2024
b1b8e54
Revert "HAPP-1868: Handle special authority with no title"
bsavoini-ey Apr 4, 2024
0fec45e
HAPP-1868: Handle special authority with no title
bsavoini-ey Apr 4, 2024
2aa2822
Version 2.2.0-239
bsavoini-ey Apr 4, 2024
8c83d25
HAPP-1867: Display only 1 validation error message
bsavoini-ey Apr 5, 2024
dcb74f7
Version 2.2.0-240
bsavoini-ey Apr 5, 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
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,9 @@ Build variants used in the app
## Deployment


### Before pushing your code
Run the spotless plugin: `./gradlew :spotlessApply`

### Versioning

In version name 1.2.3, 1 stands for major change and 2 stands for backend change, 3 stands for minor change or patch fix.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ private const val BANNER_BODY_1_ID = "banner_body_1_id"
private const val BANNER_BODY_2_ID = "banner_body_2_id"

@Composable
fun BCCancerBannerUi(
fun RecordFilterBannerUi(
onLinkClick: (String) -> Unit,
modifier: Modifier = Modifier,
body1: String,
Expand Down Expand Up @@ -106,7 +106,7 @@ private fun immunizationBannerConstraints(): ConstraintSet {
@Composable
private fun ImmunizationBannerUIPreview() {
HealthGatewayTheme {
BCCancerBannerUi(
RecordFilterBannerUi(
onLinkClick = {},
body1 = stringResource(id = R.string.records_immunization_banner_top),
clickableText = stringResource(id = R.string.records_immunization_banner_click),
Expand Down
Loading
Loading