Fixed tickets not showing
This commit is contained in:
parent
c349ad43cd
commit
1ef1b2f4fa
1 changed files with 2 additions and 1 deletions
|
|
@ -317,8 +317,9 @@
|
||||||
.then(function (response) {
|
.then(function (response) {
|
||||||
self.tickets = response.data
|
self.tickets = response.data
|
||||||
.map(function (obj) {
|
.map(function (obj) {
|
||||||
if (!obj?.paid) return
|
if (obj.paid){
|
||||||
return mapLNTicket(obj)
|
return mapLNTicket(obj)
|
||||||
|
}
|
||||||
})
|
})
|
||||||
.filter(v => v)
|
.filter(v => v)
|
||||||
})
|
})
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue