Skip to content

Commit f565edc

Browse files
refactor: change tour message as well as popup from template flow
1 parent b0e26b8 commit f565edc

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

microfrontends/SignDocuments/src/Component/TemplatePlaceholder.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -726,7 +726,7 @@ const TemplatePlaceholder = () => {
726726
selector: '[data-tut="reactourFirst"]',
727727
content: () => (
728728
<TourContentWithBtn
729-
message={`Select a recipient from this list to add a place-holder where he is supposed to sign.The placeholder will appear in the same colour as the recipient name once you drop it on the document.`}
729+
message={`Select a role from this list to add a place-holder where he is supposed to sign.The placeholder will appear in the same colour as the recipient name once you drop it on the document.`}
730730
isChecked={handleDontShow}
731731
/>
732732
),
@@ -749,7 +749,7 @@ const TemplatePlaceholder = () => {
749749
selector: '[data-tut="reactourThird"]',
750750
content: () => (
751751
<TourContentWithBtn
752-
message={`Drag the placeholder for a recipient anywhere on the document.Remember, it will appear in the same colour as the name of the recipient for easy reference.`}
752+
message={`Drag the placeholder for a role anywhere on the document.Remember, it will appear in the same colour as the name of the recipient for easy reference.`}
753753
isChecked={handleDontShow}
754754
/>
755755
),
@@ -1020,11 +1020,11 @@ const TemplatePlaceholder = () => {
10201020
<ModalUi
10211021
headerColor={"#dc3545"}
10221022
isOpen={!IsReceipent}
1023-
title={"Receipent required"}
1023+
title={"Roles"}
10241024
handleClose={() => setIsReceipent(true)}
10251025
>
10261026
<div style={{ height: "100%", padding: 20 }}>
1027-
<p>Please add receipent.</p>
1027+
<p>Please add a role</p>
10281028
</div>
10291029
</ModalUi>
10301030
{/* this modal is used show send mail message and after send mail success message */}

microfrontends/SignDocuments/src/Component/component/fieldsComponent.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -370,7 +370,7 @@ function FieldsComponent({
370370
)}
371371
{isSignersModal && (
372372
<ModalUi
373-
title={"Recipients"}
373+
title={"Roles"}
374374
isOpen={isSignersModal}
375375
handleClose={handleModal}
376376
>
@@ -398,7 +398,7 @@ function FieldsComponent({
398398
textAlign: "center"
399399
}}
400400
>
401-
Please add Recipient
401+
Please add a role
402402
</div>
403403
)}
404404
</ModalUi>

0 commit comments

Comments
 (0)