RED-3800: fix

This commit is contained in:
Dan Percic 2023-05-18 19:41:44 +03:00
parent d0551742ec
commit 721d3e3b1a

View File

@ -3,13 +3,13 @@
<div class="heading-l" translate="tenant-resolve.header"></div>
<div class="iqser-input-group required w-400">
<mat-form-field>
<mat-form-field *ngIf="_tenantsService.tenants() as tenants">
<mat-select
[placeholder]="'tenant-resolve.form.tenant-placeholder' | translate"
class="full-width"
formControlName="tenantId"
>
<mat-option *ngFor="let option of _tenantsService.tenantData$ | async" [value]="option.tenantId">
<mat-option *ngFor="let option of tenants" [value]="option.tenantId">
{{ option.displayName || option.tenantId }}
</mat-option>
</mat-select>