()
| 740 | } |
| 741 | |
| 742 | saveChanges () { |
| 743 | const selected = this.getSelectedResultEl() |
| 744 | if (!selected.length) { return } |
| 745 | const fullValue = selected.data('value') |
| 746 | this.data = { |
| 747 | original: fullValue.attributes.original, |
| 748 | majorVersion: fullValue.attributes.version.major, |
| 749 | } |
| 750 | return this.instance = fullValue |
| 751 | } |
| 752 | |
| 753 | onDownArrowPressed (e) { |
| 754 | if (!this.isEditing()) { return super.onDownArrowPressed(...arguments) } |
no test coverage detected