We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e8cb9da commit 1d2e366Copy full SHA for 1d2e366
2 files changed
src/PerfProblemSimulator/wwwroot/css/dashboard.css
@@ -1065,11 +1065,15 @@ body {
1065
font-weight: 700;
1066
color: var(--color-text);
1067
transition: color var(--transition-fast);
1068
- min-width: 5.5em;
+ min-width: 4.5em;
1069
text-align: right;
1070
display: inline-block;
1071
}
1072
1073
+#latencyTimeouts {
1074
+ min-width: 1.5em;
1075
+}
1076
+
1077
.latency-value.good {
1078
color: var(--color-success);
1079
src/PerfProblemSimulator/wwwroot/js/dashboard.js
@@ -695,8 +695,6 @@ function formatLatency(ms) {
695
return (ms / 1000).toFixed(1) + 's';
696
} else if (ms >= 1000) {
697
return (ms / 1000).toFixed(2) + 's';
698
- } else if (ms >= 100) {
699
- return Math.round(ms) + 'ms';
700
} else {
701
return ms.toFixed(1) + 'ms';
702
0 commit comments