Skip to content

Commit

Permalink
not displaying the p50 stats by default (#366)
Browse files Browse the repository at this point in the history
  • Loading branch information
ludeknovy authored Oct 25, 2023
1 parent 9cb1f92 commit fbafb5a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ <h6 class="card-header bg-transparent">Request Statistics <span class="compare">
<td *ngIf="displayColumn(itemData.userSettings?.requestStats?.max)"><span
[className]="comparedData ? _.maxResponseTime > 0 ? 'value-positive' : 'value-negative' : ''">{{_.maxResponseTime | number: '1.0-2'}}</span>
</td>
<td *ngIf="displayColumn(itemData.userSettings?.requestStats?.p90)"><span
<td *ngIf="displayColumn(itemData.userSettings?.requestStats?.p50, false)"><span
[className]="comparedData ? _.medianResponseTime > 0 ? 'value-positive' : 'value-negative' : ''">{{_.medianResponseTime | number: '1.0-2'}}</span>
</td>
<td *ngIf="displayColumn(itemData.userSettings?.requestStats?.p90)"><span
Expand Down

0 comments on commit fbafb5a

Please sign in to comment.