mirror of
https://github.com/nasa/openmct.git
synced 2025-05-29 13:44:21 +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);
|
return this.row.getFormattedValue(this.columnKey);
|
||||||
},
|
},
|
||||||
isSelectable() {
|
isSelectable() {
|
||||||
return this.row.columns[this.columnKey].selectable;
|
let column = this.row.columns[this.columnKey];
|
||||||
|
return column && column.selectable;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user