refactor(user-representation): Umbenennung von 'userRepOnSelectedRows' in 'repOnSelectedRows'

This commit is contained in:
Developer 02 2024-11-06 15:14:00 +01:00
parent deacd1a8c6
commit 881d2ccac8
2 changed files with 2 additions and 2 deletions

View File

@ -27,7 +27,7 @@
<div class="col-3">
<mat-tab-group>
<mat-tab label="{{useRepLabel}}">
<app-user-rep-table #userReps [initData]="initWithoutData" [onSelectedRows]="userRepOnSelectedRows"></app-user-rep-table>
<app-user-rep-table #userReps [initData]="initWithoutData" [onSelectedRows]="repOnSelectedRows"></app-user-rep-table>
</mat-tab>
</mat-tab-group>
</div>

View File

@ -180,7 +180,7 @@ export class UserRepresentationComponent extends BasePageComponent implements Af
}
}
userRepOnSelectedRows = (rows: GuiSelectedRow[]) => {
repOnSelectedRows = (rows: GuiSelectedRow[]) => {
if (rows.length == 0 && this.slUserRepId) {
this.userRepService.delete(this.slUserRepId).subscribe({
next: (res) => {