Skip to content

Commit

Permalink
dev-core#565: Make subject field of Note, inline editable in contact …
Browse files Browse the repository at this point in the history
…summary page
  • Loading branch information
monishdeb committed Nov 30, 2018
1 parent c08e3ee commit 57abcbb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions templates/CRM/Contact/Page/View/Note.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@
</thead>
{foreach from=$notes item=note}
<tr id="cnote_{$note.id}" class="{cycle values="odd-row,even-row"} crm-note">
<tr id="Note-{$note.id}" data-action="setvalue" class="{cycle values="odd-row,even-row"} crm-note crm-entity">
<td class="crm-note-comment">
{if $note.comment_count}
<span id="{$note.id}_show" style="display:block" class="icon_comments_show">
Expand All @@ -237,7 +237,7 @@
<a class="crm-popup" href="{crmURL p='civicrm/contact/view/note' q="action=view&selectedChild=note&reset=1&cid=`$contactId`&id=`$note.id`"}">{ts}(more){/ts}</a>
{/if}
</td>
<td class="crm-note-subject">{$note.subject}</td>
<td class="crm-note-subject crmf-subject crm-editable">{$note.subject}</td>
<td class="crm-note-modified_date" data-order="{$note.modified_date}">{$note.modified_date|crmDate}</td>
<td class="crm-note-createdBy">
<a href="{crmURL p='civicrm/contact/view' q="reset=1&cid=`$note.contact_id`"}">{$note.createdBy}</a>
Expand Down

0 comments on commit 57abcbb

Please sign in to comment.