Fix tags going missing if you join communities

This commit is contained in:
Nicolas Werner 2021-06-26 23:56:34 +02:00
parent fddc558b23
commit 78c69a8f7b
No known key found for this signature in database
GPG Key ID: C8D75E610773F2D9
1 changed files with 1 additions and 1 deletions

View File

@ -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;