Skip to content

Commit

Permalink
Merge pull request #1527 from hmcts/feature/EUI-8693-QM-navigate-to-q…
Browse files Browse the repository at this point in the history
…uery-list

EUI-8693 QM navigate to query list
  • Loading branch information
johnbenjamin-hmcts authored Nov 27, 2023
2 parents 0050bee + 6a8b70c commit efd59a4
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
@@ -1,4 +1,7 @@
## RELEASE NOTES
### 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 @@ -25,7 +25,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 efd59a4

Please sign in to comment.