@@ -186,7 +194,7 @@ import { navigationStore, zaakStore, resultaatStore, besluitStore, documentStore
@@ -319,3 +339,10 @@ h4 {
}
+
+
diff --git a/src/views/zaken/ZakenList.vue b/src/views/zaken/ZakenList.vue
index 19e7ba2..3ac08bb 100644
--- a/src/views/zaken/ZakenList.vue
+++ b/src/views/zaken/ZakenList.vue
@@ -1,5 +1,5 @@
@@ -46,7 +46,7 @@ import { navigationStore, zaakStore } from '../../store/store.js'
:size="44" />
- {{ zaak?.zaaktype }}
+ {{ zaakTypeStore.zaakTypeList.find(zaakType => zaakType.id === zaak.zaaktype)?.identificatie ?? zaak.zaaktype }}
@@ -116,10 +116,12 @@ export default {
mounted() {
this.loading = true
- zaakStore.refreshZakenList()
- .then(() => {
- this.loading = false
- })
+ Promise.all([
+ zaakStore.refreshZakenList(),
+ zaakTypeStore.refreshZaakTypenList(),
+ ]).then(() => {
+ this.loading = false
+ })
},
methods: {
clearText() {