(e)
| 145 | buildTranslationList () { return [] } // overwrite |
| 146 | |
| 147 | onInputChanged (e) { |
| 148 | const index = $(e.target).data('index') |
| 149 | const rowInfo = this.translationList[index] |
| 150 | const value = $(e.target).val() |
| 151 | return this.onTranslationChanged(rowInfo, value) |
| 152 | } |
| 153 | |
| 154 | onTranslationChanged (rowInfo, value) { |
| 155 | // - Navigate down to where the translation will live |
nothing calls this directly
no test coverage detected