feat: opensats
This commit is contained in:
parent
d08e87ec10
commit
8d23c49908
19 changed files with 86 additions and 15 deletions
|
|
@ -180,7 +180,9 @@ class LightningService {
|
|||
if (!item.comment && comment) item.comment = comment
|
||||
}
|
||||
})
|
||||
this.recentSupportersCache = Array.from(map.values()).sort((a, b) => b.amount - a.amount)
|
||||
this.recentSupportersCache = Array.from(map.values())
|
||||
.filter((item) => item.amount >= 1000)
|
||||
.sort((a, b) => b.amount - a.amount)
|
||||
return this.recentSupportersCache
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue