Skip to content

Commit b99a151

Browse files
authored
Merge pull request #7808 from segmentio/STRATCONN-6101/wrong-description
STRATCONN-6101/wrong-description
2 parents cd789c7 + b2cded3 commit b99a151

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/_includes/content/destination-footer.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ Segment lets you change these destination settings from the Segment app without
3636
{% unless item.deprecated == true %}
3737
<tr>
3838
<td class="def" id="{{item.label | slugify}}">{{item.label}}{% if item.required == true %}<br /><i>(required)</i>{%endif%}</td>
39-
<td markdown="span"><code>{{item.type}}</code>{% if item.defaultValue != null and item.defaultValue != "" and item.defaultValue != '{}'%}, defaults to {%if item.type == "array" %}{{item.defaultValue | join: ", " }}{%elsif item.type == "string"%}<code>{{item.defaultValue}}</code> {%elsif item.type == "boolean" %} <code>{{item.defaultValue | upcase }}</code> {%else%} {{item.defaultValue}}{%endif%}. <br /> <br /> {%else%}. {% endif %}{{item.description}}</td>
39+
<td markdown="span"><code>{{ item.type }}</code>{% unless item.defaultValue != nil and item.defaultValue != "" and item.defaultValue.size != 0 %}, has no default value. <br /><br /> {% else %}, defaults to {% if item.type == "array" %}{{ item.defaultValue | join: ", " }}{% elsif item.type == "string" %}<code>{{ item.defaultValue }}</code>{% elsif item.type == "boolean" %}<code>{{ item.defaultValue | upcase }}</code>{% endif %}.<br /><br />{% endunless %}{{ item.description }}</td>
4040
</tr>
4141

4242

0 commit comments

Comments
 (0)