mirror of
https://github.com/nasa/openmct.git
synced 2024-12-20 05:37:53 +00:00
Do not attempt to select cells with no column defined
This commit is contained in:
parent
02ef58ced1
commit
003c3e9fbe
@ -64,7 +64,8 @@ export default {
|
||||
return this.row.getFormattedValue(this.columnKey);
|
||||
},
|
||||
isSelectable() {
|
||||
return this.row.columns[this.columnKey].selectable;
|
||||
let column = this.row.columns[this.columnKey];
|
||||
return column && column.selectable;
|
||||
}
|
||||
}
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user