@@ -13,9 +13,6 @@ export default class ListComponent extends Component {
13
13
/**
14
14
* Layout service used to listen to changes to the application
15
15
* layout such as resizing of the main nav or object inspector.
16
- *
17
- * @property layoutService
18
- * @type {Service }
19
16
*/
20
17
@service ( 'layout' ) layoutService ;
21
18
@@ -120,6 +117,7 @@ export default class ListComponent extends Component {
120
117
let oldSchema = this . oldSchema ;
121
118
let newSchema = this . schema ;
122
119
if ( newSchema && newSchema !== oldSchema ) {
120
+ // eslint-disable-next-line ember/no-runloop
123
121
scheduleOnce ( 'actions' , this , this . setupColumns ) ;
124
122
}
125
123
this . oldSchema = newSchema ;
@@ -128,6 +126,7 @@ export default class ListComponent extends Component {
128
126
@action
129
127
elementInserted ( el ) {
130
128
this . el = el ;
129
+ // eslint-disable-next-line ember/no-runloop
131
130
scheduleOnce ( 'afterRender' , this , this . setupColumns ) ;
132
131
this . onResize = ( ) => {
133
132
this . debounceColumnWidths . perform ( ) ;
@@ -157,6 +156,7 @@ export default class ListComponent extends Component {
157
156
arr . push ( {
158
157
name,
159
158
title : name ,
159
+ // eslint-disable-next-line ember/no-runloop
160
160
fn : bind ( this , this . toggleColumnVisibility , id ) ,
161
161
} ) ;
162
162
return arr ;
0 commit comments