Fix display of board names containing special characters in custom board list. #2473

This commit is contained in:
ccd0 2019-12-13 13:08:59 -08:00
parent 5979dff560
commit b3ca1df7a0

View File

@ -237,7 +237,7 @@ Header =
else
a = $.el 'a',
href: "/#{g.BOARD.ID}/"
textContent: text or g.BOARD.ID
textContent: text or decodeURIComponent(g.BOARD.ID)
className: 'current'
if /-nt/.test t
a.target = '_blank'