Skip to content
Open
Show file tree
Hide file tree
Changes from 3 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
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@hmcts/ccd-case-ui-toolkit",
"version": "7.1.32",
"version": "7.1.38-qualifying-questions",
"engines": {
"node": ">=18.19.0"
},
Expand Down
2 changes: 1 addition & 1 deletion projects/ccd-case-ui-toolkit/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@hmcts/ccd-case-ui-toolkit",
"version": "7.1.32",
"version": "7.1.38-qualifying-questions",
"engines": {
"node": ">=18.19.0"
},
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
<ng-container *ngIf="qualifyingQuestion?.markdown">
<span class="govuk-caption-l">
{{ 'Are you contacting us about any of the following:' | rpxTranslate }}
</span>
<h1 class="govuk-heading-l">
{{ qualifyingQuestion.name | rpxTranslate }}
</h1>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ <h1 class="govuk-fieldset__heading">
</h1>
</legend>
<h2 class="govuk-heading-m govuk-!-margin-top-10">
{{ 'Select the type of query you are raising:' | rpxTranslate }}
{{ 'What do you need help to do?' | rpxTranslate }}
</h2>

<ng-container *ngIf="displayError">
Expand All @@ -20,7 +20,7 @@ <h2 class="govuk-heading-m govuk-!-margin-top-10">
<div class="govuk-radios" data-module="govuk-radios">
<ng-container *ngFor="let qualifyingQuestion of qualifyingQuestions$ | async; let isLast = last">
<ng-container *ngIf="isLast">
<div class="govuk-radios__divider">{{ 'or' | rpxTranslate }}</div>
<div class="govuk-radios__divider">{{ 'If your issue is not covered by the options above, raise a query:' | rpxTranslate }}</div>
</ng-container>
<div class="govuk-radios__item">
<input class="govuk-radios__input" id="{{qualifyingQuestion.name}}" name="qualifyingQuestionOption"
Expand Down
Loading