EOD
This commit is contained in:
parent
c11772f08b
commit
c9a4b5063f
2 changed files with 5 additions and 1 deletions
|
@ -31,6 +31,7 @@
|
||||||
}
|
}
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
|
|
||||||
<div class="add-employee-section">
|
<div class="add-employee-section">
|
||||||
<select formControlName="newEmployee">
|
<select formControlName="newEmployee">
|
||||||
@for (employee of allEmployees | async; track employee) {
|
@for (employee of allEmployees | async; track employee) {
|
||||||
|
@ -42,6 +43,9 @@
|
||||||
|
|
||||||
<button class="add-employee-button" (click)="addEmployee()">Add employee</button>
|
<button class="add-employee-button" (click)="addEmployee()">Add employee</button>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<button class="save-button">Save</button>
|
<button class="save-button">Save</button>
|
||||||
|
|
|
@ -3,7 +3,7 @@ import { EmployeesForAQualificationDTO, QualificationGetDTO } from '../../models
|
||||||
import { FormControl, FormGroup, ReactiveFormsModule, Validators } from '@angular/forms';
|
import { FormControl, FormGroup, ReactiveFormsModule, Validators } from '@angular/forms';
|
||||||
import { SkillService } from '../../service/skill.service';
|
import { SkillService } from '../../service/skill.service';
|
||||||
import { EmployeeService } from '../../service/employee.service';
|
import { EmployeeService } from '../../service/employee.service';
|
||||||
import { Observable, of, tap } from 'rxjs';
|
import { concatMap, every, from, lastValueFrom, Observable, of, switchMap, take, tap } from 'rxjs';
|
||||||
import { EmployeeNameDataDTO, EmployeeResponseDTO } from '../../models/mitarbeiter';
|
import { EmployeeNameDataDTO, EmployeeResponseDTO } from '../../models/mitarbeiter';
|
||||||
import { AsyncPipe } from '@angular/common';
|
import { AsyncPipe } from '@angular/common';
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue