From eda242e83f13e72c7192b85f7359cd3e617b8782 Mon Sep 17 00:00:00 2001 From: Sean Date: Fri, 12 Feb 2021 13:11:46 +0100 Subject: [PATCH] Fix paragraph based amnedments in iOS Fixes an issue on iOS devices regarding click-bindings in structural loops. iOS devices did not respond to any touch inputs in the given view. The same behavious was observed in #5351 This is most a bug in angular or iOS webkit --- .../motion-detail/motion-detail.component.html | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/client/src/app/site/motions/modules/motion-detail/components/motion-detail/motion-detail.component.html b/client/src/app/site/motions/modules/motion-detail/components/motion-detail/motion-detail.component.html index c52fe7de8..8dbac8f8d 100644 --- a/client/src/app/site/motions/modules/motion-detail/components/motion-detail/motion-detail.component.html +++ b/client/src/app/site/motions/modules/motion-detail/components/motion-detail/motion-detail.component.html @@ -537,9 +537,7 @@ type="button" mat-button [matMenuTriggerFor]="changeRecoMenu" - *ngIf=" - motion && (hasChangingObjects() || motion.modified_final_version) - " + *ngIf="motion && (hasChangingObjects() || motion.modified_final_version)" > rate_review  {{ verboseChangeRecoMode[crMode] | translate }} @@ -670,7 +668,9 @@ - {{ preamble | translate }} + {{ + preamble | translate + }} @@ -902,7 +902,7 @@