Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- [#10] Add PHP v8 support
- [#11] Fix missing "$hitRation" variable when OPCache is disabled

### Changed

- [#12] Change a red badge of disabled caches to grey

## [v0.2.0] - 2020-02-01

### Added
Expand Down Expand Up @@ -49,3 +53,4 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
[#9]: https://github.com/PabloKowalczyk/CacheStatsBundle/pull/9
[#10]: https://github.com/PabloKowalczyk/CacheStatsBundle/pull/10
[#11]: https://github.com/PabloKowalczyk/CacheStatsBundle/pull/11
[#12]: https://github.com/PabloKowalczyk/CacheStatsBundle/pull/12
2 changes: 1 addition & 1 deletion src/Resources/views/partials/toolbar_macros.html.twig
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
{% macro toolbar_Header(title, enabled) %}
<div class="sf-toolbar-info-piece">
<b>{{ title }}</b>
<span class="sf-toolbar-status sf-toolbar-status-{{ enabled ? 'green' : 'red' }}">
<span class="sf-toolbar-status sf-toolbar-status-{{ enabled ? 'green' : 'grey' }}">
{{ enabled ? 'Enabled' : 'Disabled' }}
</span>
</div>
Expand Down