open-nomad/ui/app/components/list-table.js

18 lines
370 B
JavaScript
Raw Normal View History

2017-09-19 14:47:10 +00:00
import Ember from 'ember';
const { Component, computed } = Ember;
export default Component.extend({
tagName: 'table',
classNames: ['table'],
source: computed(() => []),
// Plan for a future with metadata (e.g., isSelected)
decoratedSource: computed('source.[]', function() {
return this.get('source').map(row => ({
model: row,
}));
}),
});