From f3667f6aaf2d6a7fc7a17bf1287a58685ba63a43 Mon Sep 17 00:00:00 2001 From: Raktima <110812506+raktima-opensignlabs@users.noreply.github.com> Date: Fri, 11 Oct 2024 19:07:54 +0530 Subject: [PATCH] Update Placeholder.js --- apps/OpenSign/src/components/pdf/Placeholder.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/OpenSign/src/components/pdf/Placeholder.js b/apps/OpenSign/src/components/pdf/Placeholder.js index 0b1969e47..24edc793c 100644 --- a/apps/OpenSign/src/components/pdf/Placeholder.js +++ b/apps/OpenSign/src/components/pdf/Placeholder.js @@ -661,7 +661,7 @@ function Placeholder(props) { const fontSize = (size || 12) * containerScale * props.scale; //isMinHeight to set text box minimum height if (isMinHeight) { - return fontSize * 1.5; + return fontSize * 1.5 + "px"; } else { return fontSize + "px"; }