Skip to content

Commit

Permalink
Removed badge logic from InvoluntaryDissolution view
Browse files Browse the repository at this point in the history
  • Loading branch information
JazzarKarim committed May 9, 2024
1 parent 246bb7c commit b5e1f01
Showing 1 changed file with 3 additions and 10 deletions.
13 changes: 3 additions & 10 deletions auth-web/src/views/auth/staff/InvoluntaryDissolution.vue
Original file line number Diff line number Diff line change
Expand Up @@ -45,11 +45,8 @@
badgeText="Paused"
icon="mdi-calendar-clock"
label="Automated Dissolution Schedule"
:showBadge="isOnHold"
/>
<DissolutionSchedule
@update:onHold="isOnHold=$event"
/>
<DissolutionSchedule />
</v-card>
</v-col>
</v-row>
Expand All @@ -70,12 +67,9 @@ export default defineComponent({
DissolutionSchedule
},
setup () {
const isOnHold = ref<boolean>(false)
const staffStore = useStaffStore()
onMounted(() => {
isOnHold.value = staffStore.isDissolutionBatchOnHold()
})
onMounted(() => {})
/**
* The number of B.C. businesses that are ready for D1 Dissolution.
Expand All @@ -84,8 +78,7 @@ export default defineComponent({
const businessesReadyforDissolutionNumber = computed(() => 0)
return {
businessesReadyforDissolutionNumber,
isOnHold
businessesReadyforDissolutionNumber
}
}
})
Expand Down

0 comments on commit b5e1f01

Please sign in to comment.