Skip to content

Commit

Permalink
#1362 - created services for copy of select entities
Browse files Browse the repository at this point in the history
  • Loading branch information
Brajesh Kumar authored and Brajesh Kumar committed Oct 19, 2023
1 parent 8ee0c74 commit eb9983b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -474,7 +474,7 @@ export class EntitySubrecordComponent<T extends Entity> implements OnChanges {
}

selectedRows =[]
selectRow (event: any, row: any) {
selectRow (event: any, row:T[]) {
if (event.checked) {
this.selectedRows.push(row);
} else {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ <h2>{{ listName }}</h2>
[isLoading]="isLoading"
[filter]="filterObj"
[defaultSort]="listConfig?.defaultSort"
(sendBackData) = "getDatafromsubRecord($event)"
(sendBackData)="getDatafromsubRecord($event)"
></app-entity-subrecord>
</ng-template>

Expand Down

0 comments on commit eb9983b

Please sign in to comment.