diff --git a/apps/OpenSign/src/components/pdf/PlaceholderType.js b/apps/OpenSign/src/components/pdf/PlaceholderType.js
index 8f5b78ce8..0b851f258 100644
--- a/apps/OpenSign/src/components/pdf/PlaceholderType.js
+++ b/apps/OpenSign/src/components/pdf/PlaceholderType.js
@@ -334,7 +334,6 @@ function PlaceholderType(props) {
return (
{!props.pos.options?.isHideLabel && (
-
+
)}
);
@@ -714,7 +708,6 @@ function PlaceholderType(props) {
return (
{!props.pos.options?.isHideLabel && (
-
+
)}
);
diff --git a/apps/OpenSign/src/constant/Utils.js b/apps/OpenSign/src/constant/Utils.js
index ee89a2666..ba6556930 100644
--- a/apps/OpenSign/src/constant/Utils.js
+++ b/apps/OpenSign/src/constant/Utils.js
@@ -238,7 +238,10 @@ export const addWidgetOptions = (type) => {
case "stamp":
return defaultOpt;
case "checkbox":
- return { defaultOpt, options: { isReadOnly: false, isHideLabel: false } };
+ return {
+ ...defaultOpt,
+ options: { isReadOnly: false, isHideLabel: false }
+ };
case textInputWidget:
return { ...defaultOpt, validation: { type: "text", pattern: "" } };
case "initials":