Skip to content

Commit

Permalink
Fix Bank entries - nowrap on amount
Browse files Browse the repository at this point in the history
  • Loading branch information
aspangaro committed Sep 14, 2019
1 parent 3696342 commit 4420af6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions htdocs/compta/bank/bankentries_list.php
Expand Up @@ -1356,7 +1356,7 @@
// Debit
if (! empty($arrayfields['b.debit']['checked']))
{
print '<td class="right">';
print '<td class="nowrap right">';
if ($objp->amount < 0)
{
print price($objp->amount * -1);
Expand All @@ -1370,7 +1370,7 @@
// Credit
if (! empty($arrayfields['b.credit']['checked']))
{
print '<td class="right">';
print '<td class="nowrap right">';
if ($objp->amount > 0)
{
print price($objp->amount);
Expand Down

0 comments on commit 4420af6

Please sign in to comment.