This commit is contained in:
tree 2022-04-09 16:54:13 +02:00
rodič 4238086cae
revize 213e7cddc8
1 změnil soubory, kde provedl 3 přidání a 1 odebrání

Zobrazit soubor

@ -28,7 +28,9 @@
const resp = await api.apiCall('orders', { method: 'POST' }, { orders: $userData.orders }) const resp = await api.apiCall('orders', { method: 'POST' }, { orders: $userData.orders })
orders = resp.orders orders = resp.orders
tickets = resp.tickets tickets = resp.tickets
showOrder = false if (orders.length > 0 || tickets.length > 0) {
showOrder = false
}
} }
} }