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

MLPAB-1306 Use regular font weight for lpa number and add missing text #807

Merged
merged 1 commit into from
Oct 30, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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: 2 additions & 1 deletion lang/cy.json
Original file line number Diff line number Diff line change
Expand Up @@ -896,5 +896,6 @@
"lpaWithdrawn": "Welsh",
"youHaveWithdrawnLpaNumber": "Welsh <span class=\"govuk-!-font-weight-bold\">{{.UID}}</span>",
"opgWillNowContactAnyoneWhoHasAlreadyBeenContacted": "Welsh",
"withdrawn": "Welsh"
"withdrawn": "Welsh",
"dateLpaSigned": "Welsh"
}
3 changes: 2 additions & 1 deletion lang/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -840,5 +840,6 @@
"lpaWithdrawn": "LPA withdrawn",
"youHaveWithdrawnLpaNumber": "You have withdrawn LPA number <span class=\"govuk-!-font-weight-bold\">{{.UID}}</span>.",
"opgWillNowContactAnyoneWhoHasAlreadyBeenContacted": "OPG will now contact anyone who has already been contacted in relation to your LPA and notify them of your decision to withdraw.",
"withdrawn": "Withdrawn"
"withdrawn": "Withdrawn",
"dateLpaSigned": "Date LPA signed"
}
2 changes: 1 addition & 1 deletion web/template/delete_this_lpa.gohtml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

<div class="govuk-summary-card">
<div class="govuk-summary-card__title-wrapper">
<h2 class="govuk-summary-card__title">{{ tr .App "lpaNumber" }}: {{ .Lpa.UID }}</h2>
<h2 class="govuk-summary-card__title">{{ tr .App "lpaNumber" }}: <span class="govuk-!-font-weight-regular">{{ .Lpa.UID }}</span></h2>
<ul class="govuk-summary-card__actions">
<li class="govuk-summary-card__action">
<a class="govuk-link" href="#">View full LPA</a>
Expand Down
2 changes: 1 addition & 1 deletion web/template/withdraw_this_lpa.gohtml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

<div class="govuk-summary-card">
<div class="govuk-summary-card__title-wrapper">
<h2 class="govuk-summary-card__title">{{ tr .App "lpaNumber" }}: {{ .Lpa.UID }}</h2>
<h2 class="govuk-summary-card__title">{{ tr .App "lpaNumber" }}: <span class="govuk-!-font-weight-regular">{{ .Lpa.UID }}</span></h2>
<ul class="govuk-summary-card__actions">
<li class="govuk-summary-card__action">
<a class="govuk-link" href="#">View full LPA</a>
Expand Down