Skip to content
Snippets Groups Projects
Verified Commit 78c69a8f authored by Nicolas Werner's avatar Nicolas Werner
Browse files

Fix tags going missing if you join communities

parent fddc558b
No related branches found
No related tags found
No related merge requests found
Pipeline #1268 passed
......@@ -37,7 +37,7 @@ public:
int rowCount(const QModelIndex &parent = QModelIndex()) const override
{
(void)parent;
return 1 + tags_.size();
return 1 + tags_.size() + spaceOrder_.size();
}
QVariant data(const QModelIndex &index, int role) const override;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment