Skip to content
Snippets Groups Projects
Commit 9d0ae38c authored by Robert Goldmann's avatar Robert Goldmann
Browse files

Fixed #450 - show full date on search result page

parent a5758bd6
No related branches found
No related tags found
No related merge requests found
Pipeline #1895 passed
......@@ -61,6 +61,10 @@
height: 36px;
}
.transaction-date {
min-width: 5.5rem;
}
.new-transaction-button {
position: absolute;
display: inline-block;
......
......@@ -61,6 +61,10 @@
height: 36px;
}
.transaction-date {
min-width: 5.5rem;
}
.new-transaction-button {
position: absolute;
display: inline-block;
......
......@@ -36,7 +36,7 @@
<div class="hide-on-large-only">
<div class="row valign-wrapper">
<div class="col s3 center-align bold transaction-text">
${dateService.getDateStringWithoutYear(transaction.date)}
${dateService.getDateStringNormal(transaction.date)}
</div>
<@transactionsMacros.transactionType transaction/>
<@transactionsMacros.transactionAccount transaction/>
......@@ -50,8 +50,8 @@
</div>
<div class="hide-on-med-and-down">
<div class="row valign-wrapper no-margin-bottom">
<div class="col l1 xl1 bold transaction-text transaction-line-height">
${dateService.getDateStringWithoutYear(transaction.date)}
<div class="col l2 xl1 bold transaction-text transaction-line-height transaction-date">
${dateService.getDateStringNormal(transaction.date)}
</div>
<@transactionsMacros.transactionCategory transaction "left-align"/>
<@transactionsMacros.transactionType transaction/>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment