Skip to content

Commit

Permalink
Add missing span
Browse files Browse the repository at this point in the history
  • Loading branch information
nonprofittechy committed Dec 9, 2023
1 parent e00e54e commit c2dec36
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docassemble/ALToolbox/misc.py
Original file line number Diff line number Diff line change
Expand Up @@ -383,7 +383,7 @@ def button_array(
for button in buttons:
output += f"""
<a class="btn btn-da btn-light btn-da btn-da-custom {custom_link_class}" href="{button.get("url")}">
{fa_icon(button.get("image", "globe")) } {button.get("name", button.get("url"))}
<span>{fa_icon(button.get("image", "globe")) }</span> {button.get("name", button.get("url"))}
</a>"""
output += "</div>"
return output

0 comments on commit c2dec36

Please sign in to comment.