Skip to content

Commit 2606b58

Browse files
fix: change save button to next in template flow
1 parent 943f9a0 commit 2606b58

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

apps/OpenSign/src/components/pdf/PlaceholderType.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -454,7 +454,7 @@ function PlaceholderType(props) {
454454
{props?.pos?.options?.name}
455455
</option>
456456

457-
{props.pos?.options?.values.map((data, ind) => {
457+
{props.pos?.options?.values?.map((data, ind) => {
458458
return (
459459
<option key={ind} value={data}>
460460
{data}

apps/OpenSign/src/pages/PlaceHolderSign.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1292,7 +1292,7 @@ function PlaceHolderSign() {
12921292
selector: '[data-tut="addRecipient"]',
12931293
content: () => (
12941294
<TourContentWithBtn
1295-
message={`Clicking "Add recipients" button will allow you to add more signer.`}
1295+
message={`Clicking "Add recipients" button will allow you to add more signers.`}
12961296
isChecked={handleDontShow}
12971297
/>
12981298
),

apps/OpenSign/src/pages/TemplatePlaceholder.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -838,7 +838,7 @@ const TemplatePlaceholder = () => {
838838
selector: '[data-tut="headerArea"]',
839839
content: () => (
840840
<TourContentWithBtn
841-
message={`Clicking ‘Save’ will store the current template. After saving, you’ll be prompted to create a new document from this template if you wish.`}
841+
message={`Clicking ‘Next’ will store the current template. After saving, you’ll be prompted to create a new document from this template if you wish.`}
842842
isChecked={handleDontShow}
843843
/>
844844
),
@@ -1477,7 +1477,7 @@ const TemplatePlaceholder = () => {
14771477
/>
14781478
{/* pdf header which contain funish back button */}
14791479
<Header
1480-
completeBtnTitle={"Save"}
1480+
completeBtnTitle={"Next"}
14811481
isPlaceholder={true}
14821482
pageNumber={pageNumber}
14831483
allPages={allPages}

0 commit comments

Comments
 (0)