From cc03460e007b6c0da0e44668fbf36e99153e7cb2 Mon Sep 17 00:00:00 2001 From: Fabien Basmaison Date: Thu, 17 Jun 2021 17:18:55 +0200 Subject: [PATCH] Avoid space within parenthesises for series when no number is provided. --- bookwyrm/templates/book/book.html | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/bookwyrm/templates/book/book.html b/bookwyrm/templates/book/book.html index 97af53fff..62f09aa03 100644 --- a/bookwyrm/templates/book/book.html +++ b/bookwyrm/templates/book/book.html @@ -29,8 +29,7 @@ - ({{ book.series }} - {% if book.series_number %} #{{ book.series_number }}{% endif %}) + ({{ book.series }}{% if book.series_number %} #{{ book.series_number }}{% endif %}) {% endif %}

{% endif %}