We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8aa6be4 commit 50e3bd4Copy full SHA for 50e3bd4
ui/app/components/list-table.js
@@ -13,7 +13,7 @@ export default class ListTable extends Component {
13
// Plan for a future with metadata (e.g., isSelected)
14
@computed('source.[]')
15
get decoratedSource() {
16
- return this.source.map(row => ({
+ return (this.source || []).map(row => ({
17
model: row,
18
}));
19
}
0 commit comments