Skip to content

Commit 4ec1e64

Browse files
authored
Merge pull request #72 from tomcollins/fix-html-render-error
Fix html render error that adds a z character
2 parents 517f26f + 534d3d5 commit 4ec1e64

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "json-schema-static-docs",
3-
"version": "0.16.2",
3+
"version": "0.16.3",
44
"description": "",
55
"main": "lib/json-schema-static-docs.js",
66
"bin": {

templates/schema.hbs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@
103103
</tr>{{/if}}{{#if this.minLength}}<tr>
104104
<td>Min Length</td>
105105
<td colspan="2">{{this.minLength}}</td>
106-
</tr>{{/if}}{{#if this.maxLength}}<tr>z
106+
</tr>{{/if}}{{#if this.maxLength}}<tr>
107107
<td>Max Length</td>
108108
<td colspan="2">{{this.maxLength}}</td>
109109
</tr>{{/if}}{{#if this.format}}<tr>

0 commit comments

Comments
 (0)