(...args)
| 290 | } |
| 291 | |
| 292 | constructor (...args) { |
| 293 | super(...Array.from(args || [])) |
| 294 | const data = this.getData() |
| 295 | this.thangType = _.find(this.settings.supermodel.getModels(ThangType), m => { if (data) { return m.get('original') === data } }) |
| 296 | } |
| 297 | |
| 298 | buildValueForDisplay (valEl) { |
| 299 | return this.buildValueForDisplaySimply(valEl, (this.thangType != null ? this.thangType.get('name') : undefined) || 'None') |
nothing calls this directly
no test coverage detected