()
| 805 | module.exports.IDReferenceNode = (IDReferenceNode = class IDReferenceNode extends LatestVersionReferenceNode { |
| 806 | // Just for saving the _id |
| 807 | saveChanges () { |
| 808 | const selected = this.getSelectedResultEl() |
| 809 | if (!selected.length) { return } |
| 810 | const fullValue = selected.data('value') |
| 811 | this.data = fullValue.attributes._id |
| 812 | return this.instance = fullValue |
| 813 | } |
| 814 | }) |
| 815 | |
| 816 | class LevelComponentReferenceNode extends LatestVersionReferenceNode { |
nothing calls this directly
no test coverage detected