Skip to content

Commit

Permalink
minor style updates
Browse files Browse the repository at this point in the history
  • Loading branch information
Dave Brown committed Dec 18, 2023
1 parent 3fc2ce6 commit db1bc3d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/PropertyPortfolioManager.Client/Pages/BankAccounts.razor
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ else
<th class="d-none d-md-table-cell text-end text-nowrap">
Money out
</th>
<th class="d-block d-md-table-cell-none text-end">
<th class="d-table-cell d-md-none text-end">
Amount
</th>
</tr>
Expand Down Expand Up @@ -84,7 +84,7 @@ else
@string.Format("{0:N2}", transaction.Debit)
}
</td>
<td class="d-block d-md-table-cell-none text-end">
<td class="d-table-cell d-md-none text-end">
@string.Format("{0:N2}", transaction.Credit - transaction.Debit)
</td>
</tr>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,6 @@ AS
AND (@ToDate IS NULL OR td.[Date] < DATEADD(DAY, 1, @ToDate))
AND (ISNULL(@AccountId, 0) = 0 OR td.AccountId = @AccountId)
AND (ISNULL(@TransactionTypeId, 0) = 0 OR t.TransactionTypeId = @TransactionTypeId)
ORDER BY td.[Date], td.TransactionId, a.[Name], Credit, Debit
ORDER BY td.[Date] DESC, td.TransactionId, a.[Name], Credit, Debit

RETURN 0

0 comments on commit db1bc3d

Please sign in to comment.