Refactor: Bereinige von nicht genutzten Variablen

This commit is contained in:
2022-01-10 14:17:43 +01:00
parent cf50607f43
commit efadeb501b
3 changed files with 3 additions and 7 deletions
@@ -6,7 +6,6 @@
import {TimekeepingDate} from "../../components/TimekeepingDate.svelte"
export let activeRecord = null
export let newRecord = false
const Controller = {
'saveRecord': () => {
WorkingHoursRepository.addOrUpdate(activeRecord.workingDay, activeRecord).then(() => {
@@ -20,7 +19,6 @@
},
'cancelActiveRecord': () => {
activeRecord = null;
newRecord = false;
}
}
</script>