feat: allow multiple images
This commit is contained in:
parent
f91c0ec38c
commit
0f5c3e32d0
1 changed files with 1 additions and 1 deletions
|
|
@ -226,7 +226,7 @@ const market = async () => {
|
|||
let stall = this.stalls.find(s => s.id == obj.stall_id)
|
||||
if (!stall) return
|
||||
obj.stallName = stall.name
|
||||
obj.images = [obj.image]
|
||||
obj.images = obj.images || [obj.image]
|
||||
if (obj.currency != 'sat') {
|
||||
obj.formatedPrice = this.getAmountFormated(
|
||||
obj.price,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue