refs #6551 feature/WorkerTimeControl #254

Merged
alexm merged 40 commits from :feature/WorkerTimeControl into dev 2024-04-23 13:12:51 +00:00
1 changed files with 5 additions and 5 deletions
Showing only changes of commit 1fc6eed1d5 - Show all commits

View File

@ -355,11 +355,11 @@ const getMailStates = async (date) => {
};
const showWorkerTimeForm = (propValue, formType) => {
if (formType === 'edit') {
workerTimeFormProps.entryId = propValue;
} else {
workerTimeFormProps.dated = propValue;
}
const isEditForm = formType === 'edit';
workerTimeFormProps.entryId = isEditForm ? propValue : null;
workerTimeFormProps.dated = isEditForm ? null : propValue;
workerTimeFormDialogRef.value.show();
};