From 62b4ad4471b0efc9860d64f9a2b094727d584307 Mon Sep 17 00:00:00 2001 From: Hugo SUBTIL <ext.sopra.husubtil@grandlyon.com> Date: Wed, 27 Jan 2021 11:47:56 +0100 Subject: [PATCH] fix(print): hide buttons --- .../structure-details/structure-details.component.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 30a0aef4d..4f67a0057 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 @@ -82,7 +82,7 @@ </div> </div> </div> - <div fxLayout="row" fxLayoutAlign="center center"> + <div fxLayout="row" fxLayoutAlign="center center" class="hide-on-print"> <a *ngIf="!isClaimed" (click)="claimStructure()" class="primary" tabindex="0">Revendiquer cette structure</a> <a *ngIf="profileService.isLinkedToStructure(structure._id) || profileService.isAdmin()" -- GitLab