mirror of
https://github.com/overte-org/overte.git
synced 2025-06-18 11:00:33 +02:00
Merge pull request #13393 from howard-stearns/fix-concurrency-drill-down
fix concurrency drillDown
This commit is contained in:
commit
69d1b85d32
1 changed files with 2 additions and 2 deletions
|
@ -87,8 +87,8 @@ Column {
|
||||||
description: description,
|
description: description,
|
||||||
online_users: data.details.connections || data.details.concurrency || 0,
|
online_users: data.details.connections || data.details.concurrency || 0,
|
||||||
// Server currently doesn't give isStacked (undefined). Could give bool.
|
// Server currently doesn't give isStacked (undefined). Could give bool.
|
||||||
drillDownToPlace: (data.isStacked === undefined) ? (data.action !== 'concurrency') : data.isStacked,
|
drillDownToPlace: data.is_stacked || (data.action === 'concurrency'),
|
||||||
isStacked: !!data.isStacked
|
isStacked: !!data.is_stacked
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue