diff --git a/src/shared/components/ncTable/partials/rowTypePartials/DatetimeForm.vue b/src/shared/components/ncTable/partials/rowTypePartials/DatetimeForm.vue
index e577b5df3..92ba5568f 100644
--- a/src/shared/components/ncTable/partials/rowTypePartials/DatetimeForm.vue
+++ b/src/shared/components/ncTable/partials/rowTypePartials/DatetimeForm.vue
@@ -1,7 +1,7 @@
+ type="datetime-local" />
diff --git a/src/shared/components/ncTable/partials/rowTypePartials/DatetimeTimeForm.vue b/src/shared/components/ncTable/partials/rowTypePartials/DatetimeTimeForm.vue
index 3a6dace8d..b4ec1e6a8 100644
--- a/src/shared/components/ncTable/partials/rowTypePartials/DatetimeTimeForm.vue
+++ b/src/shared/components/ncTable/partials/rowTypePartials/DatetimeTimeForm.vue
@@ -1,7 +1,7 @@
+ type="time" />
@@ -36,7 +36,6 @@ export default {
},
localValue: {
get() {
- console.log(this.value)
if (this.value !== null && this.value !== 'none') {
return Moment(this.value, 'HH:mm').toDate()
} else if (this.value === null && this.column.datetimeDefault === 'now') {