mirror of
https://github.com/status-im/consul.git
synced 2025-02-03 17:34:08 +00:00
eca8e63d29
We changed our default definition list layout in https://github.com/hashicorp/consul/pull/8117. We replaced the default with a definition-table class but missed one place where the old default was previously used. This adds the definition-table class in RTT where it used to use the default.
29 lines
681 B
Handlebars
29 lines
681 B
Handlebars
<div id="round-trip-time" class="tab-section">
|
|
<div role="tabpanel">
|
|
<div class="definition-table">
|
|
<dl>
|
|
<dt>
|
|
Minimum
|
|
</dt>
|
|
<dd>
|
|
{{format-number tomography.min maximumFractionDigits=2}}ms
|
|
</dd>
|
|
<dt>
|
|
Median
|
|
</dt>
|
|
<dd>
|
|
{{format-number tomography.median maximumFractionDigits=2}}ms
|
|
</dd>
|
|
<dt>
|
|
Maximum
|
|
</dt>
|
|
<dd>
|
|
{{format-number tomography.max maximumFractionDigits=2}}ms
|
|
</dd>
|
|
</dl>
|
|
</div>
|
|
<TomographyGraph @tomography={{tomography}} />
|
|
</div>
|
|
</div>
|
|
|