Fix missing computed calls in Account

This commit is contained in:
Jan Bader 2022-02-15 08:25:12 +00:00
parent 5bbd096fc8
commit e7a085273b

View File

@ -33,8 +33,8 @@ function saveTransaction(e: MouseEvent) {
} }
const accountStore = useAccountStore(); const accountStore = useAccountStore();
const CurrentAccount = accountStore.CurrentAccount; const CurrentAccount = computed(() => accountStore.CurrentAccount);
const TransactionsList = accountStore.TransactionsList; const TransactionsList = computed(() => accountStore.TransactionsList);
</script> </script>
<template> <template>