This commit is contained in:
2021-10-07 16:42:25 +00:00
parent d106e9d44a
commit 4a07afde50
3 changed files with 31 additions and 5 deletions

View File

@@ -583,7 +583,13 @@ export default {
//MODIFY existing event, drag or extend
if (this.dragEvent || this.extendEvent) {
const param = { type: null, id: null, start: null, end: null };
const param = {
type: null,
id: null,
start: null,
end: null,
userId: this.$store.state.userId //Home-schedule the user id is always the current user, this is required due to same route handling svc-schedule where userid can change
};
if (this.dragEvent) {
param.type = this.dragEvent.type;