Skip to content
Snippets Groups Projects
Commit 2b6babb9 authored by Oussama's avatar Oussama
Browse files

fixe coffre id issue

parent 391f4952
No related branches found
No related tags found
No related merge requests found
......@@ -15,7 +15,7 @@
</div>
<div class="col-2">{{ getOwner(tenant?.ownerId)?.code }}</div>
<div class="col-3">{{ getOwner(tenant?.ownerId)?.name }}</div>
<div class="col-2">{{ getOwner(tenant?.ownerId)?.identifier }}</div>
<div class="col-2">{{ tenant?.identifier }}</div>
</div>
</div>
......@@ -27,7 +27,7 @@
<div class="col-2" (click)="ownerClick.emit(owner)">{{ owner?.name }}</div>
<div class="col-3" (click)="ownerClick.emit(owner)">{{ owner?.name }}</div>
<div class="col-3 sub-actions">
<div>
<div>
<button class="btn btn-circle primary" (click)="openCreateTenantDialog(owner)">
<i class="vitamui-icon vitamui-icon-home-add" [style.fontSize.px]="25"></i>
</button>
......@@ -54,4 +54,4 @@
<ng-template #notProofIcons>
<i class="vitamui-icon vitamui-icon-safe mr-1 " [style.fontSize.px]="25"></i>
<i class="vitamui-icon vitamui-icon-key" [style.fontSize.px]="15"></i>
</ng-template>
\ No newline at end of file
</ng-template>
......@@ -143,7 +143,6 @@ export class OwnerListComponent implements OnDestroy, OnInit {
if (!ownerId) {
return null;
}
return this.customer.owners.filter((owner) => owner.id === ownerId)[0];
}
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment