Fix: offers map coords, map position, orders filter, select-location layout
All checks were successful
Build Docker Image / build (push) Successful in 3m38s

This commit is contained in:
Ruslan Bakiev
2026-01-08 13:01:54 +07:00
parent 8d1b7c6dc7
commit 53904ead05
4 changed files with 88 additions and 95 deletions

View File

@@ -7,11 +7,11 @@ export function useTeamOrders() {
const { execute } = useGraphQL()
const filters = computed(() => [
{ key: 'all', label: t('ordersList.filters.all') },
{ key: 'pending', label: t('ordersList.filters.pending') },
{ key: 'processing', label: t('ordersList.filters.processing') },
{ key: 'in_transit', label: t('ordersList.filters.in_transit') },
{ key: 'delivered', label: t('ordersList.filters.delivered') }
{ id: 'all', label: t('ordersList.filters.all') },
{ id: 'pending', label: t('ordersList.filters.pending') },
{ id: 'processing', label: t('ordersList.filters.processing') },
{ id: 'in_transit', label: t('ordersList.filters.in_transit') },
{ id: 'delivered', label: t('ordersList.filters.delivered') }
])
const selectedFilter = ref('all')