summaryrefslogtreecommitdiff
path: root/src/SMAPI.Web/Views/JsonValidator/Index.cshtml
diff options
context:
space:
mode:
Diffstat (limited to 'src/SMAPI.Web/Views/JsonValidator/Index.cshtml')
-rw-r--r--src/SMAPI.Web/Views/JsonValidator/Index.cshtml4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/SMAPI.Web/Views/JsonValidator/Index.cshtml b/src/SMAPI.Web/Views/JsonValidator/Index.cshtml
index cd7ca912..6658e7b9 100644
--- a/src/SMAPI.Web/Views/JsonValidator/Index.cshtml
+++ b/src/SMAPI.Web/Views/JsonValidator/Index.cshtml
@@ -107,7 +107,7 @@ else if (Model.PasteID != null)
@foreach (JsonValidatorErrorModel error in Model.Errors)
{
<tr>
- <td>@error.Line</td>
+ <td><a href="#L@(error.Line)">@error.Line</a></td>
<td>@error.Path</td>
<td>@error.Message</td>
</tr>
@@ -121,6 +121,6 @@ else if (Model.PasteID != null)
}
<h2>Raw content</h2>
- <pre class="sunlight-highlight-javascript">@Model.Content</pre>
+ <pre id="raw-content" class="sunlight-highlight-javascript">@Model.Content</pre>
</div>
}