Pods, pods, everywhere
This commit is contained in:
parent
33f783bc42
commit
e623d52f34
66 changed files with 53 additions and 113 deletions
6
app/pods/components/measurement-row/component.js
Normal file
6
app/pods/components/measurement-row/component.js
Normal file
|
@ -0,0 +1,6 @@
|
|||
import Ember from 'ember';
|
||||
|
||||
export default Ember.Component.extend({
|
||||
tagName: 'tr',
|
||||
measurement: null, // passed in
|
||||
});
|
5
app/pods/components/measurement-row/template.hbs
Normal file
5
app/pods/components/measurement-row/template.hbs
Normal file
|
@ -0,0 +1,5 @@
|
|||
<td>{{measurement.characteristic}}</td>
|
||||
<td>{{measurement.computedType}}</td>
|
||||
<td>{{{measurement.computedValue}}}</td>
|
||||
<td>{{measurement.notes}}</td>
|
||||
<td>{{measurement.testMethod}}</td>
|
Reference in a new issue