Skip to content

Commit 4651153

Browse files
authored
Merge pull request #23 from contentauth/fix-defin-toc
Change number of items in each col to prevent horizontal scrolling
2 parents a983ba9 + d508323 commit 4651153

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

_data/ManifestStore_schema_edited.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,28 @@
11
{
22
"$schema": "http://json-schema.org/draft-07/schema#",
33
"title": "ManifestStore",
4-
"description": "A Container for a set of Manifests and a ValidationStatus list",
4+
"description": "A Container for a set of Manifests and a ValidationStatus list.",
55
"type": "object",
66
"required": [
77
"manifests"
88
],
99
"properties": {
1010
"active_manifest": {
11-
"description": "A label for the active (most recent) manifest in the store",
11+
"description": "A label for the active (most recent) manifest in the store.",
1212
"type": [
1313
"string",
1414
"null"
1515
]
1616
},
1717
"manifests": {
18-
"description": "A HashMap of Manifests",
18+
"description": "A HashMap of Manifests.",
1919
"type": "object",
2020
"additionalProperties": {
2121
"$ref": "#/definitions/Manifest"
2222
}
2323
},
2424
"validation_status": {
25-
"description": "ValidationStatus generated when loading the ManifestStore from an asset",
25+
"description": "ValidationStatus generated when loading the ManifestStore from an asset.",
2626
"type": [
2727
"array",
2828
"null"

pages/reference.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -69,9 +69,9 @@
6969
<tr>
7070
<td style="border: 0; vertical-align: top;">
7171
{%- for term in schema.definitions -%}
72-
{% assign i = forloop.index0|modulo: 5 %}
72+
{% assign i = forloop.index0|modulo: 7 %}
7373
<a href="{{term.first | slugify | prepend: "#"}}">{{term.first}}</a> <br/>
74-
{% if i == 4 %}
74+
{% if i == 6 %}
7575
</td>
7676
{% unless forloop.last %}
7777
<td style="border: 0; vertical-align: top;">

0 commit comments

Comments
 (0)