diff options
author | Jesse Plamondon-Willard <github@jplamondonw.com> | 2018-03-26 09:22:45 -0400 |
---|---|---|
committer | Jesse Plamondon-Willard <github@jplamondonw.com> | 2018-03-26 09:22:45 -0400 |
commit | 56288e1d0ec072d35040b7954fc7c0f8b086663e (patch) | |
tree | af3fe447b28aa987eee6f9f52c4c487ac815da26 /src/SMAPI.Web/Views | |
parent | 60fc4a64886d92e70475af5bbfeb29b2e3ef26cd (diff) | |
download | SMAPI-56288e1d0ec072d35040b7954fc7c0f8b086663e.tar.gz SMAPI-56288e1d0ec072d35040b7954fc7c0f8b086663e.tar.bz2 SMAPI-56288e1d0ec072d35040b7954fc7c0f8b086663e.zip |
fix log parser timestamp not rendered
Diffstat (limited to 'src/SMAPI.Web/Views')
-rw-r--r-- | src/SMAPI.Web/Views/LogParser/Index.cshtml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/SMAPI.Web/Views/LogParser/Index.cshtml b/src/SMAPI.Web/Views/LogParser/Index.cshtml index 9c21c8c0..7213e286 100644 --- a/src/SMAPI.Web/Views/LogParser/Index.cshtml +++ b/src/SMAPI.Web/Views/LogParser/Index.cshtml @@ -70,7 +70,7 @@ </tr> <tr> <td>Log started:</td> - <td v-pre>@Model.ParsedLog.Timestamp.UtcDateTime.ToString("yyyy-MM-dd HH:mm") UTC ({{localTimeStarted}} your time)</td> + <td>@Model.ParsedLog.Timestamp.UtcDateTime.ToString("yyyy-MM-dd HH:mm") UTC ({{localTimeStarted}} your time)</td> </tr> </table> <br /> |