Skip to content

Commit 8f48315

Browse files
Merge branch '4.4' into 5.0
* 4.4: [DoctrineBridge] [DX] Improve condition for exception text in ManagerRegistry to avoid confusion Fix testing with mongodb suggest a non-deprecated function replacement Minor Travis cosmetic patch [Cache] fix checking for igbinary availability [HttpKernel] Check if lock can be released Fixes a runtime error (Impossible to access an attribute ("value") on a double variable...) when accessing the cache panel (@see #35419) bumped Symfony version to 4.4.4 updated VERSION for 4.4.3 updated CHANGELOG for 4.4.3 bumped Symfony version to 4.3.11 updated VERSION for 4.3.10 updated CHANGELOG for 4.3.10 bumped Symfony version to 3.4.38 updated VERSION for 3.4.37 update CONTRIBUTORS for 3.4.37 updated CHANGELOG for 3.4.37 [FrameworkBundle] Add --show-arguments example to debug:container command help text
2 parents 438d072 + 59822e6 commit 8f48315

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Resources/views/Collector/cache.html.twig

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -108,9 +108,9 @@
108108
<div class="metric">
109109
<span class="value">
110110
{% if key == 'time' %}
111-
{{ '%0.2f'|format(1000 * value.value) }} <span class="unit">ms</span>
111+
{{ '%0.2f'|format(1000 * value) }} <span class="unit">ms</span>
112112
{% elseif key == 'hit_read_ratio' %}
113-
{{ value.value ?? 0 }} <span class="unit">%</span>
113+
{{ value ?? 0 }} <span class="unit">%</span>
114114
{% else %}
115115
{{ value }}
116116
{% endif %}

0 commit comments

Comments
 (0)