Skip to content

Commit db0ccc5

Browse files
authored
fix: show selected operation counts if client is selected only (#7134)
1 parent 0e44587 commit db0ccc5

File tree

1 file changed

+1
-1
lines changed
  • packages/web/app/src/components/target/insights

1 file changed

+1
-1
lines changed

packages/web/app/src/components/target/insights/Filters.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ function OperationsFilter({
121121
style={style}
122122
key={operation.id}
123123
operationStats={operation}
124-
clientOperationStats={clientFilteredOperations === null ? false : clientOpStats}
124+
clientOperationStats={clientFilteredOperations == null ? false : clientOpStats}
125125
selected={selectedItems.includes(operation.operationHash || '')}
126126
onSelect={onSelect}
127127
/>

0 commit comments

Comments
 (0)