From 3967dacb0c7eae78364785ec6c34b3ce223a4d7c Mon Sep 17 00:00:00 2001
From: Etienne LOUPIAS <eloupias@grandlyon.com>
Date: Tue, 5 Mar 2024 11:48:10 +0100
Subject: [PATCH] =?UTF-8?q?fix(personalOffer):=20D=C3=A9marches=20sans=20"?=
 =?UTF-8?q?Autres"?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

---
 .../accompaniment-picker.component.html        | 18 ++++++++++--------
 1 file changed, 10 insertions(+), 8 deletions(-)

diff --git a/src/app/shared/components/accompaniment-picker/accompaniment-picker.component.html b/src/app/shared/components/accompaniment-picker/accompaniment-picker.component.html
index e38019e36..8002133d3 100644
--- a/src/app/shared/components/accompaniment-picker/accompaniment-picker.component.html
+++ b/src/app/shared/components/accompaniment-picker/accompaniment-picker.component.html
@@ -1,10 +1,12 @@
 <div *ngIf="onlineProcedures" class="tagList">
-  <app-tag-item
-    *ngFor="let module of onlineProcedures.modules"
-    [iconName]="isSelectedModule(module) ? 'check' : null"
-    [label]="module.name"
-    [color]="isSelectedModule(module) ? 'black' : 'white'"
-    [clickable]="true"
-    (action)="toogleResult(module)"
-  />
+  <ng-container *ngFor="let module of onlineProcedures.modules">
+    <app-tag-item
+      *ngIf="module.id !== 'autres'"
+      [iconName]="isSelectedModule(module) ? 'check' : null"
+      [label]="module.name"
+      [color]="isSelectedModule(module) ? 'black' : 'white'"
+      [clickable]="true"
+      (action)="toogleResult(module)"
+    />
+  </ng-container>
 </div>
-- 
GitLab