reformat to indentation 2

This commit is contained in:
Julien Fastré 2022-05-24 16:22:05 +02:00
parent 17778ab346
commit 352b5b41b0

View File

@ -96,7 +96,8 @@ export default {
commit('showUserOnCalendar', {user: payload.result, ranges: false, remotes: true});
dispatch('fetchCalendarEvents');
break;
};
}
;
commit('addPersonsInvolved', payload);
},
removePersonInvolved({commit}, payload) {
@ -114,7 +115,8 @@ export default {
let aUsers = document.getElementById("chill_activitybundle_activity_users");
aUsers.value = removeIdFromValue(aUsers.value, payload.id);
break;
};
}
;
commit('removePersonInvolved', payload);
},
@ -172,19 +174,9 @@ export default {
mainUserInput.value = Number(mainUser.id);
commit('setMainUser', mainUser);
/*
const event = new CustomEvent('pick-entity-type-action', {detail: {
name: "chill_activitybundle_activity_mainUser",
entity: toRaw(mainUser),
action: 'add'
}});
document.dispatchEvent(event);
commit('setMainUser', mainUser);
*/
},
// Location
updateLocation({commit}, value) {
console.log('### action: updateLocation', value);