Skip to content

Commit

Permalink
Prepare version 7.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
guvra committed Nov 8, 2023
1 parent 3db20c9 commit 5e50eb3
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@

All notable changes to this project will be documented in this file.

## WIP
## [7.0.1] - 2023-11-08
[7.0.1]: https://github.com/Smile-SA/magento2-module-debug-toolbar/compare/7.0.0...7.0.1

- Renamed the "Generic" zone to "Server"
- Renamed the "Mysql" zone to "Database"
Expand Down
8 changes: 4 additions & 4 deletions view/base/templates/zone/cache.phtml
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,10 @@ $sections['Number'] = [
];

$sections['Size'] = [
'total' => $block->formatValue($sections['Size']['total'], [], 'size'),
'load' => $block->formatValue($sections['Size']['load'], [], 'size'),
'save' => $block->formatValue($sections['Size']['save'], [], 'size'),
'remove' => $block->formatValue($sections['Size']['remove'], [], 'size'),
'total' => $block->formatValue($sections['Size']['total'], ['gt' => 4096 * 1024], 'size'),
'load' => $block->formatValue($sections['Size']['load'], ['gt' => 4096 * 1024], 'size'),
'save' => $block->formatValue($sections['Size']['save'], ['gt' => 4096 * 1024], 'size'),
'remove' => $block->formatValue($sections['Size']['remove'], ['gt' => 4096 * 1024], 'size'),
];

$sections['Time'] = [
Expand Down

0 comments on commit 5e50eb3

Please sign in to comment.