From 285ba4ef7b84cee3a4de6ddee14b83e25e782f9b Mon Sep 17 00:00:00 2001 From: jorgep Date: Mon, 13 Jan 2025 10:41:23 +0100 Subject: [PATCH] fix: refs #6919 data-key descriptor --- src/pages/Account/Card/AccountDescriptorMenu.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/Account/Card/AccountDescriptorMenu.vue b/src/pages/Account/Card/AccountDescriptorMenu.vue index aa49dabe8..dbf04da6c 100644 --- a/src/pages/Account/Card/AccountDescriptorMenu.vue +++ b/src/pages/Account/Card/AccountDescriptorMenu.vue @@ -21,7 +21,7 @@ const $props = defineProps({ const { t } = useI18n(); const { openConfirmationModal } = useVnConfirm(); const { notify } = useNotify(); -const account = computed(() => useArrayData('AccountId').store.data[0]); +const account = computed(() => useArrayData('Account').store.data); onMounted(async () => { account.value.hasAccount = await useHasAccount($props.entityId);