Reintroduce required @ chars to benchmarks output (#11649)

This commit is contained in:
Steve Sanderson 2019-06-27 19:03:35 +01:00 committed by Artak
parent eb1aa2433b
commit 4ed0cd3324
1 changed files with 2 additions and 2 deletions

View File

@ -9,10 +9,10 @@
<button id="serialize-small" @onclick=SerializeSmall>Serialize (small)</button>
<button id="serialize-large" @onclick=SerializeLarge>Serialize (large)</button>
<p><pre style="border: 1px solid black; overflow: scroll;">serializedValue</pre></p>
<p><pre style="border: 1px solid black; overflow: scroll;">@serializedValue</pre></p>
@if (serializedValue != null)
{
<p>Serialized length: <strong id="serialized-length">serializedValue.Length</strong> chars</p>
<p>Serialized length: <strong id="serialized-length">@serializedValue.Length</strong> chars</p>
}
<button id="deserialize-small" @onclick=DeserializeSmall>Deserialize (small)</button>