We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents e5b120f + 2aa4c8c commit 40ed5e2Copy full SHA for 40ed5e2
apps/OpenSign/src/pages/TemplatePlaceholder.js
@@ -369,8 +369,10 @@ const TemplatePlaceholder = () => {
369
);
370
const key = randomId();
371
const dragTypeValue = item?.text ? item.text : monitor.type;
372
- const widgetWidth = defaultWidthHeight(dragTypeValue).width;
373
- const widgetHeight = defaultWidthHeight(dragTypeValue).height;
+ const widgetWidth =
+ defaultWidthHeight(dragTypeValue).width * containerScale;
374
+ const widgetHeight =
375
+ defaultWidthHeight(dragTypeValue).height * containerScale;
376
let dropData = [],
377
currentPagePosition;
378
let placeHolder;
0 commit comments