mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-02-09 23:15:45 -06:00
Fix some markdown related items for #1009
This commit is contained in:
parent
d9fa098ae5
commit
1fee62566b
@ -100,7 +100,7 @@
|
||||
<h3 class="box-title">{{ trans('form.notes') }}</h3>
|
||||
</div>
|
||||
<div class="box-body">
|
||||
{{ note.markdown|raw }}
|
||||
{{ note.text|markdown }}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
@ -240,7 +240,7 @@
|
||||
{% if journal.notes.count == 1 %}
|
||||
<tr>
|
||||
<td>{{ trans('list.notes') }}</td>
|
||||
<td>{{ journal.notes.first.markdown|raw }}</td>
|
||||
<td>{{ journal.notes.first.text|markdown }}</td>
|
||||
</tr>
|
||||
{% endif %}
|
||||
|
||||
|
@ -165,7 +165,7 @@
|
||||
|
||||
{# NOTES #}
|
||||
{% if optionalFields.notes %}
|
||||
{{ ExpandedForm.textarea('notes') }}
|
||||
{{ ExpandedForm.textarea('notes',null,{helpText: trans('firefly.field_supports_markdown')}) }}
|
||||
{% endif %}
|
||||
|
||||
</div>
|
||||
|
@ -184,7 +184,7 @@
|
||||
|
||||
{% if optionalFields.notes or data['notes'] %}
|
||||
<!-- NOTES -->
|
||||
{{ ExpandedForm.textarea('notes', data['notes']) }}
|
||||
{{ ExpandedForm.textarea('notes', data['notes'], {helpText: trans('firefly.field_supports_markdown')}) }}
|
||||
{% endif %}
|
||||
|
||||
</div>
|
||||
|
Loading…
Reference in New Issue
Block a user