aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJakob Diel <jakob.diel@hs-wismar.de>2025-06-26 14:18:02 +0000
committerJan-Hendrik Willms <tleilax+studip@gmail.com>2025-06-27 09:51:10 +0200
commitd970867b154c5718e8b7c92c78205224791f367a (patch)
tree95be8eabb9d5dc84afa687b9969435f0a69b47b7
parentccd010691dfa7015ac21a9af6f9648a368215b99 (diff)
fix typo, fix #5671
Closes #5671 Merge request studip/studip!4293
-rw-r--r--resources/vue/components/Datetimepicker.vue2
1 files changed, 1 insertions, 1 deletions
diff --git a/resources/vue/components/Datetimepicker.vue b/resources/vue/components/Datetimepicker.vue
index 6b12ad7..3fbde5d 100644
--- a/resources/vue/components/Datetimepicker.vue
+++ b/resources/vue/components/Datetimepicker.vue
@@ -74,7 +74,7 @@ export default {
$(this.$refs.visibleInput).datetimepicker(params);
},
watch: {
- mindat (new_data, old_data) {
+ mindate (new_data) {
$(this.$refs.visibleInput).datetimepicker('option', 'minDate', new Date(new_data * 1000));
},
maxdate (new_data, old_data) {