fix: Richtige Methode nutzen

This commit is contained in:
2021-12-14 12:49:52 +01:00
parent fafc2a0ad5
commit d13fce569b
+1 -1
View File
@@ -65,7 +65,7 @@
static async 'update'(date, record) {
console.debug(record);
return MyFetch.post('/working-hours/' + date, JSON.stringify(record))
return MyFetch.put('/working-hours/' + date, JSON.stringify(record))
}
}
</script>