summaryrefslogtreecommitdiffstats
path: root/src/components/Properties/PropertyDateTime.vue
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/Properties/PropertyDateTime.vue')
-rw-r--r--src/components/Properties/PropertyDateTime.vue6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/components/Properties/PropertyDateTime.vue b/src/components/Properties/PropertyDateTime.vue
index bc3be549..4d24b9d2 100644
--- a/src/components/Properties/PropertyDateTime.vue
+++ b/src/components/Properties/PropertyDateTime.vue
@@ -58,7 +58,7 @@
<div class="property__value">
<!-- Real input where the picker shows -->
- <DatetimePicker v-if="!isReadOnly"
+ <DateTimePicker v-if="!isReadOnly"
:value="vcardTimeLocalValue.toJSDate()"
:minute-step="10"
:lang="lang"
@@ -89,7 +89,7 @@
import debounce from 'debounce'
import moment from 'moment'
import {
- NcDatetimePicker as DatetimePicker,
+ NcDateTimePicker as DateTimePicker,
NcSelect,
} from '@nextcloud/vue'
import { getLocale } from '@nextcloud/l10n'
@@ -104,7 +104,7 @@ export default {
components: {
NcSelect,
- DatetimePicker,
+ DateTimePicker,
PropertyTitle,
PropertyActions,
},