Skip to content

Commit 068d53a

Browse files
committed
bugs #15339 fix(reclassification): filing plan change detection
1 parent 7610b6d commit 068d53a

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

ui/ui-frontend/projects/vitamui-library/src/lib/components/reclassification-dialog/reclassification-dialog.component.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -192,8 +192,7 @@ export class ReclassificationDialogComponent implements OnInit, AfterViewInit {
192192

193193
readonly multiSelectValue = computed(() => {
194194
this.multiSelectStatus(); // FIXME: Filing Plan component not reactive on value change
195-
196-
return this.form.controls.multiSelect.controls.filingPlan.value;
195+
return { ...this.form.controls.multiSelect.controls.filingPlan.value }; // Need destructuration to have signal value change detection.
197196
});
198197

199198
readonly hasInvalidTarget = computed(() => {

0 commit comments

Comments
 (0)