Skip to content

Commit

Permalink
Merge branch '10522-story' into 1522-test
Browse files Browse the repository at this point in the history
  • Loading branch information
pavanyenduri committed Jan 10, 2025
2 parents e6b1ebb + 0c9e667 commit 1870012
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ export const NoticeOfChangeOfTrialLocation = ({
</div>
<div style={{ fontStyle: 'italic', paddingTop: '1rem' }}>
The Standing Pretrial Order served in this case remains in full force
and effect
and effect.
</div>
</div>
</div>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import { clearAlertsAction } from '../actions/clearAlertsAction';
import { clearModalAction } from '@web-client/presenter/actions/clearModalAction';
import { clearPdfPreviewUrlAction } from '../actions/CourtIssuedOrder/clearPdfPreviewUrlAction';
import { computeSubmitTrialSessionDataAction } from '../actions/TrialSession/computeSubmitTrialSessionDataAction';
import { setAlertErrorAction } from '../actions/setAlertErrorAction';
Expand Down Expand Up @@ -35,4 +36,5 @@ export const updateTrialSessionSequence = [
},
],
},
clearModalAction,
];
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,8 @@ function TrialLocationComparison({
locationInfo: TrialSessionLocationInfo;
}) {
return (
<div className="grid-col-6">
<div className="text-bold padding-bottom-1">{headerLabel}</div>
<div className="grid-col-6 padding-right-1">
<div className="semi-bold padding-bottom-1">{headerLabel}</div>
<TrialLocationInformation locationInfo={locationInfo} />
</div>
);
Expand All @@ -74,18 +74,18 @@ export const ConfirmTrialSessionLocationChangeModalDialog = connect<
message=""
title="Are You Sure You Want to Change the Trial Location?"
>
<div>
<div className="font-sans-pro">
<div className="grid-row padding-bottom-3">
Changing the trial location will automatically generate a Notice of
Change of Trial Location.
</div>
<div className="grid-row padding-bottom-3">
<TrialLocationComparison
headerLabel="Previous Location"
headerLabel="Previous location"
locationInfo={currentTrialSessionLocation!}
/>
<TrialLocationComparison
headerLabel="New Location"
headerLabel="New location"
locationInfo={updatedTrialSessionLocation!}
/>
</div>
Expand Down

0 comments on commit 1870012

Please sign in to comment.