Skip to content

Commit

Permalink
clean up / fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ochiu committed Mar 6, 2025
1 parent 6910f2f commit 8a3706c
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,8 @@
</template>

<script lang="ts">
import { ComputedRef, computed, defineComponent, onMounted, reactive, toRefs } from '@vue/composition-api'
import { Pages, Permission, Role } from '@/util/constants'
import { computed, defineComponent, onMounted, reactive, toRefs } from '@vue/composition-api'
import StaffCreateAccountModal from '@/components/auth/staff/account-management/StaffCreateAccountModal.vue'
import { storeToRefs } from 'pinia'
import { useCodesStore } from '@/stores/codes'
Expand Down Expand Up @@ -116,14 +116,14 @@ export default defineComponent({
tabName: 'Invitations',
code: TAB_CODE.Invitations,
hasBadge: true,
count: pendingInvitationsCount.value,
count: pendingInvitationsCount,
page: Pages.STAFF_DASHBOARD_INVITATIONS
},
{ permission: Permission.VIEW_PENDING_TASKS,
tabName: 'Pending Review',
code: TAB_CODE.PendingReview,
hasBadge: true,
count: pendingTasksCount.value,
count: pendingTasksCount,
page: Pages.STAFF_DASHBOARD_REVIEW
},
{ permission: Permission.VIEW_REJECTED_TASKS,
Expand All @@ -137,7 +137,7 @@ export default defineComponent({
tabName: 'Suspended',
code: TAB_CODE.Suspended,
hasBadge: true,
count: suspendedReviewCount.value,
count: suspendedReviewCount,
page: Pages.STAFF_DASHBOARD_SUSPENDED
},
{ permission: Permission.VIEW_INACTIVE_ACCOUNTS,
Expand Down

0 comments on commit 8a3706c

Please # to comment.