From d46b3fc48be4e5858d26307b33da9c65776e7aa0 Mon Sep 17 00:00:00 2001 From: Matthew Dillon Date: Tue, 10 Nov 2015 21:32:49 -0700 Subject: [PATCH] Dropping select 2 for now --- .../strains/measurements-table-row/component.js | 3 ++- .../strains/measurements-table-row/template.hbs | 12 +++++------- 2 files changed, 7 insertions(+), 8 deletions(-) diff --git a/app/pods/protected/strains/measurements-table-row/component.js b/app/pods/protected/strains/measurements-table-row/component.js index b818de6..c3e5c89 100644 --- a/app/pods/protected/strains/measurements-table-row/component.js +++ b/app/pods/protected/strains/measurements-table-row/component.js @@ -53,7 +53,8 @@ export default Component.extend({ }, characteristicDidChange: function(value) { - this.updateField('characteristic', value); + const newCharacteristic = this.get('allCharacteristics').findBy('id', value); + this.updateField('characteristic', newCharacteristic); }, valueDidChange: function(value) { diff --git a/app/pods/protected/strains/measurements-table-row/template.hbs b/app/pods/protected/strains/measurements-table-row/template.hbs index 5bb44f0..0dc03b7 100644 --- a/app/pods/protected/strains/measurements-table-row/template.hbs +++ b/app/pods/protected/strains/measurements-table-row/template.hbs @@ -1,13 +1,11 @@ {{#if isEditing}} - {{ - select-2 - multiple=false - content=allCharacteristics - value=characteristic - optionLabelPath="characteristicName" - }} + {{one-way-input type="text" class="measurement-value" value=value update=(action "valueDidChange")}}