Skip to content

Commit

Permalink
ui: Adds definition-table class to RTT values table (#8286)
Browse files Browse the repository at this point in the history
We changed our default definition list layout in
#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.
  • Loading branch information
johncowen authored Jul 10, 2020
1 parent 47b47b9 commit 60b2e46
Showing 1 changed file with 23 additions and 21 deletions.
44 changes: 23 additions & 21 deletions ui-v2/app/templates/dc/nodes/show/rtt.hbs
Original file line number Diff line number Diff line change
@@ -1,26 +1,28 @@
<div id="round-trip-time" class="tab-section">
<div role="tabpanel">
<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>
<TomographyGraph @tomography={{tomography}} />
<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>

0 comments on commit 60b2e46

Please sign in to comment.