Bug 31569: (QA follow-up) Remove additional spaces from ISBN/ISSN

Before this change, the ISBN woudl display like: ( isbn )
This patch removes the additional spaces so the display is
the same as without this patch set on current master: (isbn)

Signed-off-by: Katrin Fischer <katrin.fischer@bsz-bw.de>
Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
This commit is contained in:
Katrin Fischer 2022-10-07 14:26:09 +00:00 committed by Tomas Cohen Arazi
parent 1a0a737600
commit 4fbdac3453
Signed by: tomascohen
GPG key ID: 0A272EA1B2F3C15F

View file

@ -120,11 +120,10 @@
<span class="citation">
[%- biblio.import_biblio.title | html -%]
[% biblio.import_biblio.author | html -%]
[% IF (biblio.import_biblio.isbn || biblio.import_biblio.issn) -%](
[% biblio.import_biblio.isbn | html -%]
[% IF (biblio.import_biblio.isbn || biblio.import_biblio.issn) -%]
([%- biblio.import_biblio.isbn | html -%]
[%- IF (biblio.import_biblio.isbn && biblio.import_biblio.issn ) %] & [%- END -%]
[%- biblio.import_biblio.issn | html %]
)
[%- biblio.import_biblio.issn | html %])
[%- END -%]
</span>
</label>