Skip to content

Commit

Permalink
Update collection button titles
Browse files Browse the repository at this point in the history
  • Loading branch information
natanfelles committed Oct 21, 2024
1 parent f253274 commit 6cf29bc
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/Views/debugbar/debugbar.php
Original file line number Diff line number Diff line change
Expand Up @@ -127,14 +127,15 @@ class_exists('Aplus')
<div class="collections">
<?php foreach ($collections as $collection): ?>
<?php if ($collection->hasCollectors()): ?>
<button class="collection" id="<?= $collection->getSafeName() ?>-collection" title="<?= $collection->getName() ?>">
<button class="collection" id="<?= $collection->getSafeName() ?>-collection"
title="<?= $collection->getName() ?> Collection">
<span class="collection-icon"><?= $collection->getIcon() ?></span>
<span class="collection-name"><?= $collection->getName() ?></span>
</button>
<?php endif ?>
<?php endforeach ?>
<div class="info">
<button class="collection" id="info-collection" title="Info">
<button class="collection" id="info-collection" title="Info Collection">
<span class="collection-icon"><?= $infoIcon ?></span>
<span class="collection-name">Info</span>
</button>
Expand Down

0 comments on commit 6cf29bc

Please sign in to comment.