Browse Source

Cosmetic fix, remove redundant empty space

apiraino 2 years ago
parent
commit
20e05c3bdf
1 changed files with 5 additions and 1 deletions
  1. 5 1
      templates/_issues.tt

+ 5 - 1
templates/_issues.tt

@@ -1,7 +1,11 @@
 {% import "_issue.tt" as issue %}
 
 {% macro render(issues, indent="", branch="", with_age=false, empty="No issues this time.") %}
+{#- If "branch" is not empty add a trailing space but no newlines before or after -#}
+{%- if branch -%}
+{%- set branch = branch ~ " " -%}
+{%- endif -%}
 {%- for issue in issues %}
-{{indent}}- {{ branch }} {{issue::render(issue=issue, with_age=with_age)}}{% else %}
+{{indent}}- {{ branch }}{{issue::render(issue=issue, with_age=with_age)}}{% else %}
 {{indent}}- {{empty}}{% endfor -%}
 {% endmacro %}