Skip to content

Commit 1870ddd

Browse files
committed
Instance state should be instance
1 parent 4324f2b commit 1870ddd

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

app/components/slow-node-times.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,10 @@ function nodeTime(node) {
2727
export default Ember.Component.extend({
2828
graph: inject.service(),
2929

30-
sortDescending: true,
30+
init() {
31+
this._super(...arguments);
32+
this.sortDescending = true;
33+
},
3134

3235
nodes: computed('data', 'filter', 'pluginNameFilter', 'groupByPluginName', function() {
3336
let data = this.get('data');

0 commit comments

Comments
 (0)