|
@@ -181,8 +181,9 @@ export default {
|
|
|
for (const row of this.resolvedTable.rows) {
|
|
|
const val = row[subColProp]
|
|
|
if (val?.generation == current) {
|
|
|
- if (this.isCellQueryable(val, column)) {
|
|
|
- this.goDetails(val, column, false)
|
|
|
+ const subColumn = column.children[subColProp]
|
|
|
+ if (this.isCellQueryable(val, subColumn)) {
|
|
|
+ this.goDetails(val, subColumn, false)
|
|
|
return
|
|
|
}
|
|
|
}
|