mirror of
https://github.com/wallabag/wallabag.git
synced 2025-02-16 18:55:15 +00:00
Tag view: order tags by label
Signed-off-by: Kevin Decherf <kevin@kdecherf.com>
This commit is contained in:
parent
60ce3da325
commit
1ba4d40e82
1 changed files with 1 additions and 0 deletions
|
@ -70,6 +70,7 @@ class TagRepository extends EntityRepository
|
|||
return $this->getQueryBuilderByUser($userId)
|
||||
->select('t.id, t.label, t.slug, count(e.id) as nbEntries')
|
||||
->distinct(true)
|
||||
->orderBy('t.label')
|
||||
->getQuery()
|
||||
->getArrayResult();
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue