fix: change save button to next in template flow

This commit is contained in:
RaktimaNXG
2024-06-25 17:17:20 +05:30
parent 943f9a0673
commit 2606b58434
3 changed files with 4 additions and 4 deletions
@@ -454,7 +454,7 @@ function PlaceholderType(props) {
{props?.pos?.options?.name}
</option>
{props.pos?.options?.values.map((data, ind) => {
{props.pos?.options?.values?.map((data, ind) => {
return (
<option key={ind} value={data}>
{data}
+1 -1
View File
@@ -1292,7 +1292,7 @@ function PlaceHolderSign() {
selector: '[data-tut="addRecipient"]',
content: () => (
<TourContentWithBtn
message={`Clicking "Add recipients" button will allow you to add more signer.`}
message={`Clicking "Add recipients" button will allow you to add more signers.`}
isChecked={handleDontShow}
/>
),
@@ -838,7 +838,7 @@ const TemplatePlaceholder = () => {
selector: '[data-tut="headerArea"]',
content: () => (
<TourContentWithBtn
message={`Clicking Save will store the current template. After saving, youll be prompted to create a new document from this template if you wish.`}
message={`Clicking Next will store the current template. After saving, youll be prompted to create a new document from this template if you wish.`}
isChecked={handleDontShow}
/>
),
@@ -1477,7 +1477,7 @@ const TemplatePlaceholder = () => {
/>
{/* pdf header which contain funish back button */}
<Header
completeBtnTitle={"Save"}
completeBtnTitle={"Next"}
isPlaceholder={true}
pageNumber={pageNumber}
allPages={allPages}