Skip to content

Commit ac3e93f

Browse files
committed
DOC-204 update settings table
1 parent a2a8542 commit ac3e93f

File tree

2 files changed

+8
-12
lines changed

2 files changed

+8
-12
lines changed

src/_includes/content/destination-footer.md

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -48,18 +48,14 @@ Segment lets you change these destination settings from the Segment app without
4848
<thead>
4949
<tr>
5050
<th>Setting</th>
51-
<th>Data Type</th>
52-
<th>Default</th>
5351
<th>Description</th>
5452
</tr>
5553
</thead>
5654
{% for item in currentIntegration.settings %}
5755
{% unless item.deprecated == true %}
5856
<tr>
5957
<td class="def" id="{{item.name | slugify}}"><code>{{item.name}}</code></td>
60-
<td>{{item.type}}</td>
61-
<td><code>{{item.defaultValue}}</code></td>
62-
<td markdown="span">{{item.description}}</td>
58+
<td markdown="span"><code>{{item.type}}</code>{% if item.defaultValue != ''%}, defaults to {{item.defaultValue}}.{% endif %} <br /> <br /> {{item.description}}</td>
6359
</tr>
6460

6561

src/_sass/components/_markdown.scss

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -230,16 +230,16 @@
230230
width: 25%;
231231
}
232232

233-
th:nth-of-type(2n) {
234-
width: 15%
235-
}
233+
// th:nth-of-type(2n) {
234+
// width: 15%
235+
// }
236236

237-
th:nth-of-type(3n) {
238-
width: 15%
239-
}
237+
// th:nth-of-type(3n) {
238+
// width: 15%
239+
// }
240240

241241
th:nth-of-type(4n) {
242-
width: 45%
242+
width: 75%
243243
}
244244

245245
td.def {

0 commit comments

Comments
 (0)