fix: added breadcrumb to system-info page

This commit is contained in:
2026-03-22 16:26:16 +01:00
parent 026002a501
commit 8ce1ad423f

View File

@@ -13,7 +13,13 @@ $permissions = $permissions ?? [];
$healthChecks = $healthChecks ?? [];
?>
<?php
$breadcrumbs = [
['label' => t('Home'), 'path' => 'admin'],
['label' => t('System Info')],
];
require templatePath('partials/app-breadcrumb.phtml');
?>
<div class="app-dashboard-titlebar">
<h1><?php e(t('System Info')); ?></h1>
</div>