Skip to content

Commit

Permalink
Merge branch 'Release' into feature/EUI-8608-QM-follow-up-on-the-quer…
Browse files Browse the repository at this point in the history
…y-tab
  • Loading branch information
johnbenjamin-hmcts authored Nov 27, 2023
2 parents 1bc3aad + efd59a4 commit 0c513fe
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 5 deletions.
3 changes: 3 additions & 0 deletions RELEASE-NOTES.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@
### Version 6.16.0-follow-up-on-query-tab-v2
**EUI-8608** Query management follow up on the query tab

### Version 6.16.0-query-management-navigate-back-to-query-list
**EUI-8693** Query management navigate back to query list from query details

### Version 6.19.13-case-flags-v2-update-flag-show-other-description
**EUI-9016** Amend display of page title and field labels on "Update flag" page, to include the flag description for flags of type "Other"

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
<ng-container *ngIf="query">
<p>
<a class="govuk-link" href="javascript:void(0)" (click)="onBack()">{{ 'Back to query list' | rpxTranslate }}</a>
</p>
<div>
<table class="govuk-table query-details-table" [attr.aria-describedby]="'Details of the query' | rpxTranslate">
<caption class="govuk-table__caption govuk-table__caption--l">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ describe('QueryDetailsComponent', () => {
expect(component).toBeTruthy();
});

it('should emit event on clcking back to queries', () => {
it('should emit event on clcking back to query list', () => {
spyOn(component.backClicked, 'emit');
component.onBack();
expect(component.backClicked.emit).toHaveBeenCalled();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,6 @@

<ng-template #singleQueryDetails>
<br>
<p>
<a class="govuk-link" href="javascript:void(0)">{{ 'Back to queries' | rpxTranslate }}</a>
</p>

<ccd-query-details
[query]="query"
(backClicked)="showQueryList = true"
Expand Down

0 comments on commit 0c513fe

Please sign in to comment.