Skip to content

Commit

Permalink
Removed centered class from recipient address column
Browse files Browse the repository at this point in the history
  • Loading branch information
MasterZydra committed Feb 21, 2024
1 parent de45135 commit 0b829f8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ Types of changes: `Added`, `Changed`, `Deprecate`, `Removed`, `Fixed`, `Secruity

## [Unreleased]

### Changed
- Minor styling improvements

## v2.0.0 - 21.02.2024 - Same frontend with new backend

### Added
Expand Down
2 changes: 1 addition & 1 deletion resources/Views/entities/recipient/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
foreach ($recipients as $recipient): ?>
<tr>
<td><?= $recipient->getName() ?></td>
<td class="center"><?= mb_strimwidth($recipient->getStreet() . ' ' . $recipient->getPostalCode() . ' ' . $recipient->getCity(), 0, 50, '...') ?></td>
<td><?= mb_strimwidth($recipient->getStreet() . ' ' . $recipient->getPostalCode() . ' ' . $recipient->getCity(), 0, 50, '...') ?></td>
<td class="center"><?= Convert::boolToTString($recipient->getIsLocked()) ?></td>
<td><a href="recipient/edit?id=<?= $recipient->getId() ?>"><?=__('Edit') ?></a></td>
</tr>
Expand Down

0 comments on commit 0b829f8

Please sign in to comment.