Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Josh-HMCTS committed Feb 6, 2025
1 parent 83836a0 commit 3de5864
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
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.35-ungrey-back-button-1",
"version": "7.1.35-ungrey-back-button-2",
"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.35-ungrey-back-button-1",
"version": "7.1.35-ungrey-back-button-2",
"engines": {
"node": ">=18.19.0"
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -533,6 +533,9 @@ export class CaseEditPageComponent implements OnInit, AfterViewChecked, OnDestro
linkedCasesTab.value = linkedCasesTab.value.filter((item) =>
initialCaseRefs.includes(item.value.CaseReference)
);
linkedCasesTab.formatted_value = linkedCasesTab.formatted_value.filter((item) =>
initialCaseRefs.includes(item.value.CaseReference)
);
}
if (linkedCasesTab && (linkedCasesTab?.formatted_value?.length !== initalLinks?.length)) {
linkedCasesTab.value = linkedCasesTab.formatted_value;
Expand Down

0 comments on commit 3de5864

Please sign in to comment.