Skip to content

Commit

Permalink
Merge pull request #3492 from unicef/fix_pca
Browse files Browse the repository at this point in the history
Fix pca
  • Loading branch information
robertavram authored May 9, 2023
2 parents ffce84e + dfe3872 commit 16b1f09
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/etools/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
VERSION = __version__ = '10.1.1'
VERSION = __version__ = '10.1.2'
NAME = 'eTools'
2 changes: 1 addition & 1 deletion src/etools/applications/core/templatetags/etools.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,4 +73,4 @@ def text_wrap(text, width=70):
https://github.com/nigma/django-easy-pdf/issues/65
https://github.com/xhtml2pdf/xhtml2pdf/issues/379
"""
return ' '.join(wrap(text, width))
return ' '.join(wrap(text, width, break_on_hyphens=False))
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@
<tr>
<td>{{ officer.first_name }} {{ officer.last_name }}</td>
<td>{{ officer.title }}</td>
<td>{{ officer.email|text_wrap:30 }}</td>
<td>{{ officer.email|text_wrap:20 }}</td>
<td width="140px">&nbsp;</td>
</tr>
{% endfor %}
Expand Down Expand Up @@ -1297,7 +1297,7 @@
party`s work, employees or other personnel, or subcontractors.
</p>
<p>
(v) "<span class="underline"></span>" is conduct by a party’s employees, personnel or
(v) "<span class="underline">safeguarding violation</span>" is conduct by a party’s employees, personnel or
subcontractors that actually or likely causes harm to a person, including
any kind of physical, emotional or sexual abuse, neglect or exploitation.
</p>
Expand Down

0 comments on commit 16b1f09

Please sign in to comment.