Skip to content

Commit e73e1aa

Browse files
Merge pull request #8 from youngl-docusign/FLOW-630-get-tab-info-support-tab-group
get tab info action does not support tab groups
2 parents 1801e5c + 2c85370 commit e73e1aa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

certified-connectors/DocuSignDemo/script.csx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3482,7 +3482,7 @@ public class Script : ScriptBase
34823482
{
34833483
foreach(var tab in tabTypes.Value)
34843484
{
3485-
if((tab["tabLabel"].ToString()).Equals(tabLabel))
3485+
if(tab["tabLabel"] != null && (tab["tabLabel"].ToString()).Equals(tabLabel))
34863486
{
34873487
newBody["name"] = tab["name"];
34883488
newBody["value"] = tab["value"];

0 commit comments

Comments
 (0)