Skip to content

Commit

Permalink
updated the display of measurement list
Browse files Browse the repository at this point in the history
  • Loading branch information
sandhya committed Aug 11, 2023
1 parent fecc44d commit 6267e37
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -403,7 +403,8 @@ export class GpBoonlogicComponent implements OnInit, DoCheck, OnDestroy {
// tslint:disable-next-line: deprecation
.subscribe((mes: string | any[]) => {
if (mes && mes.length > 0) {
this.measurementTypeList = [...mes];
this.measurementTypeList=[];
this.measurementTypeList = [...this.measurementTypeList,...mes];
}
});
}
Expand Down

0 comments on commit 6267e37

Please sign in to comment.