Skip to content

Commit

Permalink
Merge branch 'master' into exui-673-expand-all-folders
Browse files Browse the repository at this point in the history
  • Loading branch information
jphcdcgi authored Feb 5, 2025
2 parents 2250d55 + 919e7dd commit 57e575e
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 4 deletions.
4 changes: 4 additions & 0 deletions RELEASE-NOTES.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
## RELEASE NOTES

### Version 7.1.34
**EXUI-2524** Review font and grammer in the query management screens

### Version 7.1.33
**EXUI-2696** Improve release process
**EXUI-2734** Improve usability of the event history screen

### Version 7.1.32
**EXUI-2729** Query Management - Callback error handling.
Expand Down
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.33-expand-all-folders",
"version": "7.1.34",
"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.33",
"version": "7.1.34",
"engines": {
"node": ">=18.19.0"
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,9 @@
<h1 class="govuk-heading-l">
{{ qualifyingQuestion.name | rpxTranslate }}
</h1>
<ccd-markdown
<div class="qm-qualifying-question">
<ccd-markdown
[content]="qualifyingQuestion.markdown | rpxTranslate">
</ccd-markdown>
</div>
</ng-container>
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
.qm-qualifying-question {
.markdown {
font-size: 19px;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@ import { QualifyingQuestion } from '../../../models';

@Component({
selector: 'ccd-qualifying-question-detail',
templateUrl: './qualifying-question-detail.component.html'
templateUrl: './qualifying-question-detail.component.html',
styleUrls: ['./qualifying-question-detail.component.scss']
})
export class QualifyingQuestionDetailComponent {
@Input() public qualifyingQuestion: QualifyingQuestion;
Expand Down

0 comments on commit 57e575e

Please sign in to comment.