FIX: Serialize parent categories first (#24530)

The parent category needs to be serialized before the child category
because they are parsed in order. Otherwise the client will not build
the parent-child relationship correctly.
This commit is contained in:
Bianca Nenciu
2023-11-23 19:03:05 +02:00
committed by GitHub
parent 2228f75645
commit 012541b045
2 changed files with 4 additions and 4 deletions

View File

@@ -78,7 +78,7 @@ class TopicList
def categories
@categories ||=
topics.map { |t| [t.category, t.category&.parent_category] }.uniq.flatten.compact
topics.map { |t| [t.category&.parent_category, t.category] }.uniq.flatten.compact
end
def load_topics