Browse Source

Fix border style on Children fact-sheet rows

pull/170/head
ariannedee 5 years ago
parent
commit
2e329ece99
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      edivorce/apps/core/templatetags/summary_format.py

+ 1
- 1
edivorce/apps/core/templatetags/summary_format.py View File

@ -157,7 +157,7 @@ def format_review_row_heading(title, style="", substep=None):
def format_fact_sheet(title, url, value):
return format_html(
'<tr><td class="table-bordered"><a href="{}"><b>{}</b></a></td><td>{}</td></tr>',
'<tr><td class="table-bordered"><a href="{}"><b>{}</b></a></td><td class="table-bordered">{}</td></tr>',
url,
title,
value


Loading…
Cancel
Save