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.
2 parents 79070d6 + dd26403 commit dace014Copy full SHA for dace014
Resources/public/style/httplug.css
@@ -80,6 +80,11 @@
80
font-size: 12px;
81
}
82
83
+.httplug-duration {
84
+ min-width: 6ch;
85
+ text-align:center;
86
+}
87
+
88
/**
89
* HTTP method colors from swagger-ui.
90
*/
Resources/views/webprofiler.html.twig
@@ -94,6 +94,7 @@
94
<span class="httplug-target">{{ stack.requestTarget }}</span>
95
</div>
96
<div>
97
+ <span class="label httplug-duration">{{ stack.duration|number_format }} ms</span>
98
{% if stack.responseCode >= 400 and stack.responseCode <= 599 %}
99
<span class="label status-error">{{ stack.responseCode }}</span>
100
{% elseif stack.responseCode >= 300 and stack.responseCode <= 399 %}
0 commit comments