Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion client/src/assets/text.json
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@
},
"popups": {
"workflowTriggered": {
"title": "Incompatible workflow",
"title": "This workflow type cannot be triggered in an embedded window.",
"descriptiona": "See and redirect the user back to the workflows page",
"description": "See <a href='https://developers.docusign.com/docs/maestro-api/maestro101/embed-workflow/#embedded-workflow-instance-recommendations-and-restrictions' target='_blank'>Embedded workflow instance recommendations and restrictions</a> and redirect the user back to the workflows page"
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,9 @@ const WorkflowTriggerResult = ({ workflowInstanceUrl }) => {
<div className={styles.popupContainer}>
<img src={imgSuccess} alt="" />
<h2>{textContent.popups.workflowTriggered.title}</h2>
<br />
<p className={styles.popupMessageContainer}>
See <a href='https://developers.docusign.com/docs/maestro-api/maestro101/embed-workflow/#embedded-workflow-instance-recommendations-and-restrictions' target='_blank'>Embedded workflow instance recommendations and restrictions</a>.
See <a href='https://developers.docusign.com/docs/maestro-api/maestro101/embed-workflow/#embedded-workflow-instance-recommendations-and-restrictions' target='_blank'>Embedded workflow instance recommendations and restrictions</a> for more information.
</p>
<a href={workflowInstanceUrl} target="_blank" rel="noreferrer" onClick={handleFinishTrigger}>
{textContent.buttons.continue}
Expand Down