diff options
author | (quasar) nebula <towerofnix@gmail.com> | 2021-01-12 20:02:30 -0400 |
---|---|---|
committer | (quasar) nebula <towerofnix@gmail.com> | 2021-01-12 20:02:30 -0400 |
commit | 64f4bd54e0d1b34464a42eb5d9d952b8a76a5684 (patch) | |
tree | 140f4a2e0b098f2ccc11280413683a78e5c57b57 | |
parent | 97f532acaf49e314081ebd91d466da281147c8c7 (diff) |
display "choose another group" on all galleries
-rw-r--r-- | upd8.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/upd8.js b/upd8.js index 4adc5469..82215c11 100644 --- a/upd8.js +++ b/upd8.js @@ -3347,7 +3347,7 @@ async function writeGroupPage(group) { content: fixWS` <h1>${group.name} - Gallery</h1> <p class="quick-info"><b>${releasedTracks.length}</b> track${releasedTracks.length === 1 ? '' : 's'} across <b>${releasedAlbums.length}</b> album${releasedAlbums.length === 1 ? '' : 's'}, totaling <b>~${getDurationString(totalDuration)}</b> ${totalDuration > 3600 ? 'hours' : 'minutes'}.</p> - ${group.directory === C.FANDOM_GROUP_DIRECTORY && `<p class="quick-info">(<a href="${C.LISTING_DIRECTORY}/groups/by-category/">Choose a group to filter by!</a>)</p>`} + <p class="quick-info">(<a href="${C.LISTING_DIRECTORY}/groups/by-category/">Choose another group to filter by!</a>)</p> <div class="grid-listing"> ${getGridHTML({ entries: C.sortByDate(group.albums.map(item => ({item}))).reverse(), |