Added method to update user row creation

This commit is contained in:
Hannes Heine 2021-11-25 13:33:22 +01:00 committed by ogerly
parent 9d168f07e7
commit 9049427103

View File

@ -68,6 +68,7 @@
:item="row.item" :item="row.item"
:creationUserData="creationData" :creationUserData="creationData"
@update-creation-data="updateCreationData" @update-creation-data="updateCreationData"
@update-user-data="updateUserData"
/> />
<b-button size="sm" @click="row.toggleDetails"> <b-button size="sm" @click="row.toggleDetails">
@ -232,6 +233,9 @@ export default {
...data, ...data,
} }
}, },
updateUserData(rowItem, newCreation) {
rowItem.creation = newCreation
},
}, },
} }
</script> </script>