Skip to content

Commit

Permalink
added close contactmoment button on modal
Browse files Browse the repository at this point in the history
  • Loading branch information
SudoThijn committed Dec 11, 2024
1 parent d727c28 commit 97b35ef
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 @@ -320,7 +326,7 @@ export default {
contactMoment: {
titel: '',
notitie: '',
status: null,
status: 'open',
startDate: null,
},
klantenLoading: false,
Expand Down

0 comments on commit 97b35ef

Please sign in to comment.