diff --git a/webview/src/experiments/components/table/Row.tsx b/webview/src/experiments/components/table/Row.tsx index fab4a6de3f..2ccb4dc244 100644 --- a/webview/src/experiments/components/table/Row.tsx +++ b/webview/src/experiments/components/table/Row.tsx @@ -324,6 +324,7 @@ export const RowContent: React.FC< flatIndex, isExpanded, subRows, + depth, values: { id } } = row const { displayColor, starred } = original @@ -411,7 +412,7 @@ export const RowContent: React.FC< bulletColor={displayColor} starred={starred} isRowSelected={isRowSelected} - showSubRowStates={!isExpanded} + showSubRowStates={!isExpanded && depth > 0} subRowStates={subRowStates} toggleExperiment={toggleExperiment} toggleRowSelection={toggleRowSelection}