Skip to content

Commit

Permalink
remove reset zeitinterval (#212)
Browse files Browse the repository at this point in the history
  • Loading branch information
Der-Alex-K authored Oct 8, 2024
1 parent 05e9f33 commit 0e3274e
Showing 1 changed file with 1 addition and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
<script setup lang="ts">
import type MessstelleOptionsDTO from "@/types/messstelle/MessstelleOptionsDTO";
import { computed, ref, watch } from "vue";
import { computed, ref } from "vue";
import PanelHeader from "@/components/common/PanelHeader.vue";
import { useMessstelleStore } from "@/store/MessstelleStore";
Expand Down Expand Up @@ -134,13 +134,4 @@ const helpTextZeitintervall = computed(() => {
}
return "";
});
watch(
() => chosenOptionsCopy.value.zeitauswahl,
() => {
if (isIntervallChangingLocked.value) {
chosenOptionsCopy.value.intervall = ZaehldatenIntervall.STUNDE_VIERTEL;
}
}
);
</script>

0 comments on commit 0e3274e

Please sign in to comment.