Skip to content

Commit

Permalink
24436 - fix display has wrong filing count. (#88)
Browse files Browse the repository at this point in the history
* 24638 - fix: incorrect name in amalgamation application

* 24638 - chore: add additional translations for company types.

* 24436 - fix display has wrong filing count.
  • Loading branch information
hfekete authored Dec 2, 2024
1 parent cf5718f commit 4a891a3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pages/dashboard.vue
Original file line number Diff line number Diff line change
Expand Up @@ -318,7 +318,7 @@ const coaEffectiveDate = computed(() => {
<template #header>
<div>
{{ $t('title.section.filingHistory') }}
<span class="font-normal">({{ filings?.length || 0 }})</span>
<span class="font-normal">({{ filings?.filter(f=>f.displayLedger).length || 0 }})</span>
<BcrosFilingAddStaffFiling v-if="isStaffAccount" class="float-right font-small overflow-auto" />
</div>
</template>
Expand Down

0 comments on commit 4a891a3

Please sign in to comment.