Content server: Remove un-needed narrow nbsp before titles in mobile view

This commit is contained in:
Kovid Goyal 2019-12-05 18:23:51 +05:30
parent 64adf22ac0
commit 14293ba36d
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -188,11 +188,11 @@ def build_index(rd, books, num, search, sort, order, start, total, url_base, fie
if val:
ctext += '%s=[%s] '%(name, val)
first = E.span(u'\u202f%s %s by %s' % (book.title, series,
first = E.span('%s %s by %s' % (book.title, series,
authors_to_string(book.authors)), class_='first-line')
div.append(first)
ds = '' if is_date_undefined(book.timestamp) else strftime('%d %b, %Y', t=dt_as_local(book.timestamp).timetuple())
second = E.span(u'%s %s %s' % (ds, tags, ctext), class_='second-line')
second = E.span('%s %s %s' % (ds, tags, ctext), class_='second-line')
div.append(second)
books_table.append(E.tr(thumbnail, data))