File tree Expand file tree Collapse file tree 2 files changed +7
-4
lines changed Expand file tree Collapse file tree 2 files changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -79,3 +79,6 @@ body > [class="ember-view"],
79
79
cursor : pointer;
80
80
}
81
81
82
+ .td-time {
83
+ text-align : right;
84
+ }
Original file line number Diff line number Diff line change 11
11
<div class =" level-item" >
12
12
<p class =" control" >
13
13
<label class =" checkbox" >
14
- {{ input type =" checkbox" checked =groupByPluginName }}
14
+ < input type =" checkbox" checked ={{ groupByPluginName }} onchange = {{ action ( mut groupByPluginName ) value = " target.checked " }} >
15
15
Group by Plugin Name
16
16
</label >
17
17
</p >
24
24
<tr >
25
25
<td style =" width: 65%" >Description</td >
26
26
<td >{{ if groupByPluginName " Count" " Plugin Name" }} </td >
27
- <td >
27
+ <td class = " td-time " >
28
28
<a href =" #" class =" nodes-table_toggle" {{ action " toggleTime" }} >Time (ms) <i class =" fa fa-caret-{{ if sortDescending ' down' ' up' }} " ></i ></a >
29
29
</td >
30
30
</tr >
34
34
{{ #each sortedNodes as |node |}}
35
35
<tr class =" table-row" {{ action ' toggleDetailsForNode' node }} >
36
36
<td >{{ node.label.name }} </td >
37
- <td >{{ node.label.broccoliPluginName }} </td >
38
- <td >{{ ns-to-ms node._stats.time.plugin }} </td >
37
+ <td class = " table-row-plugin-name " >{{ node.label.broccoliPluginName }} </td >
38
+ <td class = " td-time " >{{ ns-to-ms node._stats.time.plugin }} </td >
39
39
</tr >
40
40
{{ #if node.showDetails }}
41
41
<tr >
You can’t perform that action at this time.
0 commit comments