fix: Only the first Wordlist has number of words displayed in a counter

This commit is contained in:
Artem Chepurnoy 2024-01-20 12:39:12 +02:00
parent 0896a81785
commit f4f06b0500
No known key found for this signature in database
GPG Key ID: FAC37D0CF674043E
1 changed files with 1 additions and 0 deletions

View File

@ -33,6 +33,7 @@ FROM
COUNT(wordlistId) AS wordCount
FROM
generatorWordlistWord
GROUP BY wordlistId
) AS w ON generatorWordlist.id = w.wordlistId
ORDER BY
generatorWordlist.createdAt DESC;