File tree Expand file tree Collapse file tree 3 files changed +1
-6
lines changed Expand file tree Collapse file tree 3 files changed +1
-6
lines changed Original file line number Diff line number Diff line change @@ -19,7 +19,6 @@ module.exports = {
19
19
'ember/no-empty-attrs' : 'off' ,
20
20
'ember/no-get' : 'off' ,
21
21
'ember/no-mixins' : 'off' ,
22
- 'ember/require-computed-macros' : 'off' ,
23
22
'ember/require-computed-property-dependencies' : 'off' ,
24
23
} ,
25
24
overrides : [
Original file line number Diff line number Diff line change @@ -26,10 +26,6 @@ export default Controller.extend({
26
26
return this . myFollowing . slice ( 0 , TO_SHOW ) ;
27
27
} ) ,
28
28
29
- visibleStats : computed ( 'myStats' , function ( ) {
30
- return this . myStats ;
31
- } ) ,
32
-
33
29
hasMoreCrates : computed ( 'myCrates.[]' , function ( ) {
34
30
return this . get ( 'myCrates.length' ) > TO_SHOW ;
35
31
} ) ,
Original file line number Diff line number Diff line change 6
6
<div local-class =" stats" >
7
7
<div local-class =' downloads' >
8
8
<img src =" /assets/download.svg" >
9
- <span local-class =' num' >{{ format-num this.visibleStats .total_downloads }} </span >
9
+ <span local-class =' num' >{{ format-num this.myStats .total_downloads }} </span >
10
10
<span local-class =" stats-label" >Total Downloads</span >
11
11
</div >
12
12
</div >
You can’t perform that action at this time.
0 commit comments