Skip to content

Commit

Permalink
Fixes missing notes on tasks (#430)
Browse files Browse the repository at this point in the history
Target notes will now show up on the system page.

Fixes https://trello.com/c/gKxTo3fO
  • Loading branch information
dennisjbell authored and jhunt committed Jul 12, 2018
1 parent c24d583 commit 7986b63
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 2 additions & 2 deletions web2/htdocs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -1504,8 +1504,8 @@ <h3>[[= _.target.name ]]</h3>

<div class="job summary">
<h2>Notes</h2>
<div class="notes">[[ if (_.target.summary) { ]]
[[= _.target.summary ]]
<div class="notes">[[ if (_.target.notes) { ]]
[[= _.target.notes ]]
[[ } else { ]]
<div class="no-data">No notes provided. Too bad.</div>
[[ } ]]</div>
Expand Down
2 changes: 2 additions & 0 deletions web2/htdocs/shield.css
Original file line number Diff line number Diff line change
Expand Up @@ -836,6 +836,7 @@ footer p {
background-color: #F2F2F2;
box-shadow: 4px 4px 5px rgba(0,0,0,0.25);
}

.field .shadow.card {
color: #999;
font-size: 18pt;
Expand Down Expand Up @@ -932,6 +933,7 @@ footer p {
margin-top: -2px;
z-index: 49;
}
.summary .notes,
.card .notes {
font-size: 14px;
padding: 1em;
Expand Down

0 comments on commit 7986b63

Please sign in to comment.