CSSWidget: don't filter funded proposals

This commit is contained in:
tobtoht 2020-12-22 20:54:30 +01:00
parent 45b3f1ebde
commit a38912a348
No known key found for this signature in database
GPG Key ID: 1CADD27F41F45C3C
1 changed files with 0 additions and 2 deletions

View File

@ -22,8 +22,6 @@ void CCSModel::updateEntries(const QList<QSharedPointer<CCSEntry>>& entries) {
m_entries.clear();
for (const auto& entry : entries) {
if (entry->raised_amount > entry->target_amount)
continue;
m_entries.push_back(entry);
}