Skip to content

Commit 0bb0a5d

Browse files
authored
Merge pull request #26 from docusign/DEVDOCS-17835
DEVDOCS-17835: update error popup
2 parents 749ef07 + ff3e5dc commit 0bb0a5d

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

client/src/assets/text.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@
7878
},
7979
"popups": {
8080
"workflowTriggered": {
81-
"title": "Incompatible workflow",
81+
"title": "This workflow type cannot be triggered in an embedded window.",
8282
"descriptiona": "See and redirect the user back to the workflows page",
8383
"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"
8484
}

client/src/components/Popups/WorkflowTriggerResult/WorkflowTriggerResult.jsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,9 @@ const WorkflowTriggerResult = ({ workflowInstanceUrl }) => {
2020
<div className={styles.popupContainer}>
2121
<img src={imgSuccess} alt="" />
2222
<h2>{textContent.popups.workflowTriggered.title}</h2>
23+
<br />
2324
<p className={styles.popupMessageContainer}>
24-
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>.
25+
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.
2526
</p>
2627
<a href={workflowInstanceUrl} target="_blank" rel="noreferrer" onClick={handleFinishTrigger}>
2728
{textContent.buttons.continue}

0 commit comments

Comments
 (0)