diff --git a/app/pods/protected/strains/edit/controller.js b/app/pods/protected/strains/edit/controller.js
index d8aa4d9..a9e48f3 100644
--- a/app/pods/protected/strains/edit/controller.js
+++ b/app/pods/protected/strains/edit/controller.js
@@ -54,7 +54,7 @@ export default Controller.extend({
}
},
- addCharacteristic: function() {
+ addMeasurement: function() {
return this.store.createRecord('measurement', {
characteristic: this.store.createRecord('characteristic', { sortOrder: -999 }),
});
diff --git a/app/pods/protected/strains/edit/template.hbs b/app/pods/protected/strains/edit/template.hbs
index 727510c..334ad07 100644
--- a/app/pods/protected/strains/edit/template.hbs
+++ b/app/pods/protected/strains/edit/template.hbs
@@ -2,7 +2,7 @@
protected/strains/strain-form
strain=model
speciesList=speciesList
- add-characteristic=(action "addCharacteristic")
+ add-measurement=(action "addMeasurement")
allCharacteristics=allCharacteristics
on-save=(action "save")
on-cancel=(action "cancel")
diff --git a/app/pods/protected/strains/measurements-table/component.js b/app/pods/protected/strains/measurements-table/component.js
index f9dac39..87bf403 100644
--- a/app/pods/protected/strains/measurements-table/component.js
+++ b/app/pods/protected/strains/measurements-table/component.js
@@ -11,7 +11,7 @@ export default Component.extend({
canAdd: false,
// Actions
- "add-characteristic": null,
+ "add-measurement": null,
"save-measurement": null,
"delete-measurement": null,
@@ -22,8 +22,8 @@ export default Component.extend({
sortedMeasurements: sort('measurements', 'sortParams'),
actions: {
- addCharacteristic: function() {
- return this.attrs['add-characteristic']();
+ addMeasurement: function() {
+ return this.attrs['add-measurement']();
},
changeSortParam: function(col) {
diff --git a/app/pods/protected/strains/measurements-table/template.hbs b/app/pods/protected/strains/measurements-table/template.hbs
index d2d10dd..9d648b4 100644
--- a/app/pods/protected/strains/measurements-table/template.hbs
+++ b/app/pods/protected/strains/measurements-table/template.hbs
@@ -1,7 +1,7 @@
{{#if canAdd}}
-