diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/page/group.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/page/group.js b/src/page/group.js index 698c17ec..7282fc81 100644 --- a/src/page/group.js +++ b/src/page/group.js @@ -201,7 +201,7 @@ function generateGroupSidebar(currentGroup, isGallery, { html.tag('ul', category.groups.map(group => html.tag('li', { - class: currentGroup && 'current', + class: group === currentGroup && 'current', style: getLinkThemeString(group.color) }, strings('groupSidebar.groupList.item', { |