Skip to content

Commit

Permalink
Added requested changes
Browse files Browse the repository at this point in the history
  • Loading branch information
remko48 committed Oct 22, 2024
1 parent e2aa2fb commit 4cdf108
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/modals/zaken/ZaakForm.vue
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ import { navigationStore, zaakStore, zaakTypeStore } from '../../store/store.js'
</div>

<NcButton v-if="success === null"
:disabled="loading || !zaak.identificatie || !zaakTypeLoading || !zaak.bronorganisatie || !zaak.verantwoordelijkeOrganisatie || !zaak.startdatum"
:disabled="loading || !zaak.identificatie || zaakTypeLoading || !zaak.bronorganisatie || !zaak.verantwoordelijkeOrganisatie || !zaak.startdatum"
type="primary"
@click="saveZaak()">
<template #icon>
Expand Down Expand Up @@ -122,7 +122,9 @@ export default {
archiefstatus: '',
},
loading: false,
success: false,
success: null,
error: null,
zaakLoading: false,
zaakType: {},
zaakTypeLoading: false,
archiefstatus: {
Expand Down

0 comments on commit 4cdf108

Please sign in to comment.