From 63f2eacb47dce250d1a247532ca08933f1a30b6c Mon Sep 17 00:00:00 2001 From: Dan Volchek Date: Wed, 25 Dec 2019 20:51:46 -0800 Subject: display JSON file instead of log on the JSON validator page --- src/SMAPI.Web/Views/JsonValidator/Index.cshtml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/SMAPI.Web/Views/JsonValidator/Index.cshtml') diff --git a/src/SMAPI.Web/Views/JsonValidator/Index.cshtml b/src/SMAPI.Web/Views/JsonValidator/Index.cshtml index fb43823a..a35fb9bb 100644 --- a/src/SMAPI.Web/Views/JsonValidator/Index.cshtml +++ b/src/SMAPI.Web/Views/JsonValidator/Index.cshtml @@ -75,7 +75,7 @@ else if (!isEditView && Model.PasteID != null)
@if (Model.Expiry != null) { - This log will expire in @((DateTime.UtcNow - Model.Expiry.Value).Humanize()). + This JSON file will expire in @((DateTime.UtcNow - Model.Expiry.Value).Humanize()). }
-- cgit