diff --git a/apps/OpenSign/src/pages/Form.js b/apps/OpenSign/src/pages/Form.js index 8f580ab6f..097f65956 100644 --- a/apps/OpenSign/src/pages/Form.js +++ b/apps/OpenSign/src/pages/Form.js @@ -983,7 +983,7 @@ const Forms = (props) => { - +

{t("send-in-order")}

{t("send-in-order-help.p1")}

@@ -1104,7 +1104,7 @@ const Forms = (props) => {

@@ -1267,7 +1267,7 @@ const Forms = (props) => { )} - +

{t("isenable-otp")}

{t("isenable-otp-help.p1")}

@@ -1342,7 +1342,7 @@ const Forms = (props) => { {" "} - +

{t("enable-tour")}

diff --git a/apps/OpenSignServer/cloud/customRoute/v1/routes/CreateDocumentWithTemplate.js b/apps/OpenSignServer/cloud/customRoute/v1/routes/CreateDocumentWithTemplate.js index b963b35c5..3715a1726 100644 --- a/apps/OpenSignServer/cloud/customRoute/v1/routes/CreateDocumentWithTemplate.js +++ b/apps/OpenSignServer/cloud/customRoute/v1/routes/CreateDocumentWithTemplate.js @@ -199,7 +199,7 @@ export default async function createDocumentWithTemplate(request, response) { const enableOTP = request.body?.enableOTP; const IsEnableOTP = enableOTP !== undefined ? enableOTP : template?.IsEnableOTP || false; - const enableTour = request.body?.enableOTP; + const enableTour = request.body?.enableTour; const isTourEnabled = enableTour !== undefined ? enableTour : template?.IsTourEnabled || false; object.set('IsTourEnabled', isTourEnabled);