diff --git a/core/core-frontend/src/views/visualized/data/dataset/form/index.vue b/core/core-frontend/src/views/visualized/data/dataset/form/index.vue index a9e57978a6..40d2acbcf0 100644 --- a/core/core-frontend/src/views/visualized/data/dataset/form/index.vue +++ b/core/core-frontend/src/views/visualized/data/dataset/form/index.vue @@ -116,10 +116,6 @@ const fieldOptions = [ value: 'yyyy/MM/dd', label: 'yyyy/MM/dd' }, - { - value: 'yyyyMMdd', - label: 'yyyyMMdd' - }, { value: 'yyyy-MM-dd HH:mm:ss', label: 'yyyy-MM-dd HH:mm:ss' @@ -128,10 +124,6 @@ const fieldOptions = [ value: 'yyyy/MM/dd HH:mm:ss', label: 'yyyy/MM/dd HH:mm:ss' }, - { - value: 'yyyyMMdd HH:mm:ss', - label: 'yyyyMMdd HH:mm:ss' - }, { value: 'custom', label: t('visualization.custom') diff --git a/core/core-frontend/src/views/visualized/data/dataset/form/util.ts b/core/core-frontend/src/views/visualized/data/dataset/form/util.ts index 06bf494065..fce9348faf 100644 --- a/core/core-frontend/src/views/visualized/data/dataset/form/util.ts +++ b/core/core-frontend/src/views/visualized/data/dataset/form/util.ts @@ -113,10 +113,8 @@ const getFieldName = (fields, name) => { const timeTypes = [ 'yyyy-MM-dd', 'yyyy/MM/dd', - 'yyyyMMdd', 'yyyy-MM-dd HH:mm:ss', 'yyyy/MM/dd HH:mm:ss', - 'yyyyMMdd HH:mm:ss', 'custom' ]