We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5539e93 commit ca4a003Copy full SHA for ca4a003
src/panel/statistics/Statistics.tsx
@@ -56,7 +56,7 @@ export const Statistics: React.FC<StatisticsProps> = ({
56
) : null;
57
58
var errorRate =
59
- selectionStatistics.requests >= 0 && selectionStatistics.errors >= 0 ? (
+ selectionStatistics.requests > 0 && selectionStatistics.errors >= 0 ? (
60
<tr ng-show="">
61
<td className="table--td--selection">Error Rate</td>
62
<td className="table--td--selection">
0 commit comments