Skip to content

Commit 4fd26a7

Browse files
minor symfony#57680 [WebProfilerBundle] Format workflow calls duration (alexandre-daubois)
This PR was merged into the 7.2 branch. Discussion ---------- [WebProfilerBundle] Format workflow calls duration | Q | A | ------------- | --- | Branch? | 7.2 | Bug fix? | no | New feature? | yes | Deprecations? | no | Issues | Fix symfony#57673 | License | MIT Used the same format as the one used in `src/Symfony/Bundle/SecurityBundle/Resources/views/Collector/security.html.twig` Commits ------- 59a4787 [WebProfilerBundle] Format workflow calls duration
2 parents 2611029 + 59a4787 commit 4fd26a7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Symfony/Bundle/WebProfilerBundle/Resources/views/Collector/workflow.html.twig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -319,7 +319,7 @@
319319
{% endif %}
320320
</td>
321321
<td>
322-
{{ call.duration }}ms
322+
{{ '%0.2f ms'|format(call.duration) }}
323323
</td>
324324
</tr>
325325
{% endfor %}

0 commit comments

Comments
 (0)