From ba4f15ab6cffc56a56539f6b6bc71082e3366844 Mon Sep 17 00:00:00 2001 From: cnouguier Date: Wed, 15 Jan 2025 18:44:58 +0100 Subject: [PATCH] chore: fixed typo --- core/client/components/time/KDateTimeRange.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/client/components/time/KDateTimeRange.vue b/core/client/components/time/KDateTimeRange.vue index 4fc438d51..976a4d225 100644 --- a/core/client/components/time/KDateTimeRange.vue +++ b/core/client/components/time/KDateTimeRange.vue @@ -110,7 +110,7 @@ watch(() => props.modelValue, (value) => { endDateTime.value = value ? moment.utc(value.end) : null }) -// Immedaite +// Immediate if (props.modelValue) { startDateTime.value = moment.utc(props.modelValue.start) endDateTime.value = moment.utc(props.modelValue.end)