#8201: Fix descriptor icons error #1080
|
@ -17,7 +17,6 @@ const state = useState();
|
||||||
const customer = ref();
|
const customer = ref();
|
||||||
|
|
||||||
onMounted(async () => {
|
onMounted(async () => {
|
||||||
console.log('state.get(customer): ', state.get('customer'));
|
|
||||||
customer.value = state.get('customer');
|
customer.value = state.get('customer');
|
||||||
if (customer.value) customer.value.webAccess = data.value?.account?.isActive;
|
if (customer.value) customer.value.webAccess = data.value?.account?.isActive;
|
||||||
});
|
});
|
||||||
|
@ -99,7 +98,6 @@ const debtWarning = computed(() => {
|
||||||
/>
|
/>
|
||||||
</template>
|
</template>
|
||||||
<template #icons>
|
<template #icons>
|
||||||
{{ console.log('customer: ', customer) }}
|
|
||||||
<QCardActions v-if="customer" class="q-gutter-x-md">
|
<QCardActions v-if="customer" class="q-gutter-x-md">
|
||||||
<QIcon
|
<QIcon
|
||||||
v-if="!customer.isActive"
|
v-if="!customer.isActive"
|
||||||
|
|
Loading…
Reference in New Issue