diff options
author | Dan Volchek <volchek2@illinois.edu> | 2019-12-25 20:51:46 -0800 |
---|---|---|
committer | Dan Volchek <volchek2@illinois.edu> | 2019-12-25 20:51:46 -0800 |
commit | 63f2eacb47dce250d1a247532ca08933f1a30b6c (patch) | |
tree | 1c13aa64de1040b64de90e19a5fe990e5e5e4797 /src/SMAPI.Web/Views/JsonValidator/Index.cshtml | |
parent | d932a11f51392cd42ab501185982af971f954c8d (diff) | |
download | SMAPI-63f2eacb47dce250d1a247532ca08933f1a30b6c.tar.gz SMAPI-63f2eacb47dce250d1a247532ca08933f1a30b6c.tar.bz2 SMAPI-63f2eacb47dce250d1a247532ca08933f1a30b6c.zip |
display JSON file instead of log on the JSON validator page
Diffstat (limited to 'src/SMAPI.Web/Views/JsonValidator/Index.cshtml')
-rw-r--r-- | src/SMAPI.Web/Views/JsonValidator/Index.cshtml | 2 |
1 files changed, 1 insertions, 1 deletions
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) <div class="save-metadata" v-pre> @if (Model.Expiry != null) { - <text>This log will expire in @((DateTime.UtcNow - Model.Expiry.Value).Humanize()). </text> + <text>This JSON file will expire in @((DateTime.UtcNow - Model.Expiry.Value).Humanize()). </text> } <!--@Model.UploadWarning--> </div> |