Apply ESLint formatting fixes to admin and orders pages.
Auto-fix from eslint src/ --fix after ./gradlew check touched these files. No functional changes.
This commit is contained in:
parent
49b5a91f4a
commit
7731eb1155
2 changed files with 6 additions and 4 deletions
|
|
@ -13,9 +13,9 @@ const loading = ref(true)
|
|||
const error = ref('')
|
||||
const statusError = ref('')
|
||||
const trackingError = ref('')
|
||||
const activeFilter = ref<'all' | 'processing' | 'paid_group' | 'pending_payment'>(
|
||||
'all',
|
||||
)
|
||||
const activeFilter = ref<
|
||||
'all' | 'processing' | 'paid_group' | 'pending_payment'
|
||||
>('all')
|
||||
const searchQuery = ref('')
|
||||
const trackingInputValues = reactive<Record<string, string>>({})
|
||||
const messageModalOrder = ref<AdminOrder | null>(null)
|
||||
|
|
|
|||
|
|
@ -87,7 +87,9 @@ onMounted(async () => {
|
|||
|
||||
<div class="orders__card-meta">
|
||||
<span class="orders__meta-label">Beställnings-ID</span>
|
||||
<span class="orders__meta-value orders__order-id">{{ order.id }}</span>
|
||||
<span class="orders__meta-value orders__order-id">{{
|
||||
order.id
|
||||
}}</span>
|
||||
|
||||
<span class="orders__meta-label">Meddelande</span>
|
||||
<span class="orders__meta-value orders__message">{{
|
||||
|
|
|
|||
Loading…
Reference in a new issue