-
Notifications
You must be signed in to change notification settings - Fork 0
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
MAP-2235 Add address for inward movements for ROTL #29
MAP-2235 Add address for inward movements for ROTL #29
Conversation
@@ -33,7 +33,7 @@ export default class MovementsService { | |||
return { | |||
...prisoner, | |||
movementTime: prisonerMovement?.movementTime, | |||
arrivedFrom: prisonerMovement?.fromAgencyDescription || prisonerMovement?.fromCity, | |||
arrivedFrom: prisonerMovement?.fromAgencyDescription || prisonerMovement?.fromAddress, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The City is now contained in the address
<th scope="col" class="govuk-table__header govuk-!-font-size-16">Prison number</th> | ||
<th scope="col" class="govuk-table__header govuk-!-font-size-16">Date of birth</th> | ||
<th scope="col" class="govuk-table__header govuk-!-font-size-16">Location</th> | ||
<th scope="col" class="govuk-table__header govuk-!-font-size-16" aria-sort="none">Time arrived</th> | ||
<th scope="col" class="govuk-table__header govuk-!-font-size-16" aria-sort="descending">Time arrived</th> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Descending time list of arrivals instead by default
<th scope="col" class="govuk-table__header govuk-!-font-size-16">Prison number</th> | ||
<th scope="col" class="govuk-table__header govuk-!-font-size-16">Date of birth</th> | ||
<th scope="col" class="govuk-table__header govuk-!-font-size-16" aria-sort="none">Time out</th> | ||
<th scope="col" class="govuk-table__header govuk-!-font-size-16" aria-sort="descending">Time out</th> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Descending time list of departures instead by default
No description provided.