From fd2fbd167eda8b0e2f0c20ccda14fdd1ff3cd136 Mon Sep 17 00:00:00 2001 From: Lyndon Jetten Date: Thu, 1 Jun 2023 17:10:13 +0200 Subject: [PATCH] =?UTF-8?q?MoK:=20+=20Timing-Problem=20beim=20Berechnen=20?= =?UTF-8?q?der=20Unterschriftenfeldh=C3=B6he=20im=20Quittierungsbelegsmodu?= =?UTF-8?q?l=20behoben,=20das=20die=20UI=20kaputt=20gemacht=20hat.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Views/Report/ConfirmationReceiptSignaturePartial.cshtml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/BeWoPlanerMobil/Views/Report/ConfirmationReceiptSignaturePartial.cshtml b/BeWoPlanerMobil/Views/Report/ConfirmationReceiptSignaturePartial.cshtml index 4b9e7547f..dd263a281 100644 --- a/BeWoPlanerMobil/Views/Report/ConfirmationReceiptSignaturePartial.cshtml +++ b/BeWoPlanerMobil/Views/Report/ConfirmationReceiptSignaturePartial.cshtml @@ -20,7 +20,9 @@ $(".signature-card").ready(function () { try { - $(".signature-card").height(getMaxElementHeight("signature-card")); + setTimeout(function() { + $(".signature-card").height(getMaxElementHeight("signature-card")); + }, 100); } catch (error) { showErrorPopup(error); }