Fix: offers map coords, map position, orders filter, select-location layout
All checks were successful
Build Docker Image / build (push) Successful in 3m38s
All checks were successful
Build Docker Image / build (push) Successful in 3m38s
This commit is contained in:
@@ -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')
|
||||
|
||||
Reference in New Issue
Block a user