Skip to content

Commit 1b989e5

Browse files
committed
Fix
1 parent 9ca1f9e commit 1b989e5

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

config.dist.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@
6161
//'separator' => ':', // Separator for tree view (optional)
6262
],
6363
],
64-
//'apcu-separator' => ':', // Separator for tree view (optional)
64+
//'apcuseparator' => ':', // Separator for tree view (optional)
6565
// Example of authentication with http auth.
6666
/*'auth' => static function (): void {
6767
$username = 'admin';

src/Dashboards/APCu/APCuTrait.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -244,7 +244,7 @@ public function keysTableView(array $keys): array {
244244
* @return array<int, array<string, string|int>>
245245
*/
246246
public function keysTreeView(array $keys): array {
247-
$separator = Config::get('apcu-separator', ':');
247+
$separator = Config::get('apcuseparator', ':');
248248
$this->template->addGlobal('separator', $separator);
249249

250250
$tree = [];

0 commit comments

Comments
 (0)