(datum)
| 10041 | }); |
| 10042 | } |
| 10043 | activate(datum) { |
| 10044 | return new Promise((resolve, reject)=>{ |
| 10045 | this.dataScope.activate(datum); |
| 10046 | this.props.onDataChanged(DataLayoutChange.same); |
| 10047 | resolve(); |
| 10048 | }); |
| 10049 | } |
| 10050 | deactivate() { |
| 10051 | return new Promise((resolve, reject)=>{ |
| 10052 | this.dataScope.deactivate(); |
nothing calls this directly
no test coverage detected