Skip to content

Commit

Permalink
Merge pull request #89 from ConductionNL/feature/PC108-99/close-conta…
Browse files Browse the repository at this point in the history
…ctmoment

added close contactmoment button on modal
  • Loading branch information
RalkeyOfficial authored Dec 12, 2024
2 parents 3e1bb4e + 97b35ef commit a8e4929
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/modals/contactMomenten/ContactMomentenForm.vue
Original file line number Diff line number Diff line change
Expand Up @@ -229,6 +229,12 @@ import { contactMomentStore, navigationStore, taakStore, zaakStore } from '../..
</template>
Zaak starten
</NcActionButton>
<NcActionButton :disabled="contactMoment.status === 'gesloten'" @click="() => (contactMoment.status = 'gesloten')">
<template #icon>
<BriefcaseAccountOutline :size="20" />
</template>
Sluit Contactmoment
</NcActionButton>
</NcActions>
<NcButton
v-if="!isView"
Expand Down Expand Up @@ -334,7 +340,7 @@ export default {
contactMoment: {
titel: '',
notitie: '',
status: null,
status: 'open',
startDate: null,
},
klantenLoading: false,
Expand Down

0 comments on commit a8e4929

Please sign in to comment.