more ids for dossier tests

This commit is contained in:
Edi Cziszter 2022-02-01 15:41:21 +02:00
parent fd31c038e6
commit a4c5ed739d
4 changed files with 12 additions and 3 deletions

View File

@ -13,6 +13,7 @@
[routerLink]="breadcrumb.routerLink"
class="breadcrumb"
routerLinkActive="active"
[id]="first ? 'navigateToActiveDossiers' : ''"
>
{{ breadcrumb.name$ | async }}
</a>

View File

@ -104,6 +104,7 @@
[label]="'add-dossier-dialog.actions.save-and-add-members' | translate"
[type]="iconButtonTypes.dark"
icon="red:assign"
id="createDossierEditTeamButton"
></iqser-icon-button>
</div>
</form>

View File

@ -49,7 +49,14 @@
</div>
<div *ngIf="showActionButtons" class="dialog-actions">
<button (click)="save()" [disabled]="disabled || !valid || !changed" color="primary" mat-flat-button type="button">
<button
(click)="save()"
[disabled]="disabled || !valid || !changed"
color="primary"
mat-flat-button
type="button"
id="editDossierSaveButton"
>
{{ 'edit-dossier-dialog.actions.save' | translate }}
</button>
<iqser-icon-button
@ -65,5 +72,5 @@
</div>
</div>
<iqser-circle-button class="dialog-close" icon="iqser:close" (action)="close()"></iqser-circle-button>
<iqser-circle-button class="dialog-close" icon="iqser:close" (action)="close()" id="editDossierCloseButton"></iqser-circle-button>
</section>

View File

@ -2,7 +2,7 @@
<div class="iqser-input-group w-300 required">
<mat-form-field floatLabel="always">
<mat-label>{{ 'assign-dossier-owner.dialog.single-user' | translate }}</mat-label>
<mat-select formControlName="owner">
<mat-select formControlName="owner" id="editDossierOwnerSelect">
<mat-option *ngFor="let userId of ownersSelectOptions" [value]="userId">
{{ userId | name }}
</mat-option>