From 97fa22b69ba2a1dd723f369d25bbe5809c4ce429 Mon Sep 17 00:00:00 2001 From: howard-stearns Date: Fri, 15 Jun 2018 16:57:21 -0700 Subject: [PATCH] fix concurrency drillDown --- interface/resources/qml/hifi/Feed.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/interface/resources/qml/hifi/Feed.qml b/interface/resources/qml/hifi/Feed.qml index 4cd52a582d..5f2dfea8c7 100644 --- a/interface/resources/qml/hifi/Feed.qml +++ b/interface/resources/qml/hifi/Feed.qml @@ -87,8 +87,8 @@ Column { description: description, online_users: data.details.connections || data.details.concurrency || 0, // Server currently doesn't give isStacked (undefined). Could give bool. - drillDownToPlace: (data.isStacked === undefined) ? (data.action !== 'concurrency') : data.isStacked, - isStacked: !!data.isStacked + drillDownToPlace: data.is_stacked || (data.action === 'concurrency'), + isStacked: !!data.is_stacked }; }