From 7e74a9e17daab7a68979de649adffb61903ce0c1 Mon Sep 17 00:00:00 2001 From: Etienne LOUPIAS <eloupias@grandlyon.com> Date: Thu, 28 Mar 2024 14:12:34 +0100 Subject: [PATCH] fix(structure): onlineProcedures icons specific case bug --- .../structure-details/structure-details.component.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/structure-list/components/structure-details/structure-details.component.html b/src/app/structure-list/components/structure-details/structure-details.component.html index cdc28cb54..3f49b3cb7 100644 --- a/src/app/structure-list/components/structure-details/structure-details.component.html +++ b/src/app/structure-list/components/structure-details/structure-details.component.html @@ -200,9 +200,9 @@ [clickable]="false" /> <div class="wrapper"> - <div *ngFor="let accompagnement of structure.categoriesDisplay.onlineProcedures.sort()"> + <ng-container *ngFor="let accompagnement of structure.categoriesDisplay.onlineProcedures.sort()"> <app-logo-card *ngIf="accompagnement.name !== 'Autres'" [module]="accompagnement" /> - </div> + </ng-container> </div> <div *ngIf="structure.otherDescription" class="otherDescription"> <b>Autres démarches :</b> -- GitLab