diff --git a/packages/core/client/src/collection-manager/interfaces/number.ts b/packages/core/client/src/collection-manager/interfaces/number.ts index fa93295146..ca32bcdc5f 100644 --- a/packages/core/client/src/collection-manager/interfaces/number.ts +++ b/packages/core/client/src/collection-manager/interfaces/number.ts @@ -1,6 +1,6 @@ +import { i18n } from '../../i18n'; import { defaultProps, operators, unique } from './properties'; import { IField } from './types'; -import { i18n } from '../../i18n'; export const number: IField = { name: 'number', @@ -10,7 +10,7 @@ export const number: IField = { title: '{{t("Number")}}', sortable: true, default: { - type: 'float', + type: 'double', // name, uiSchema: { type: 'number', diff --git a/packages/core/client/src/collection-manager/interfaces/properties/index.ts b/packages/core/client/src/collection-manager/interfaces/properties/index.ts index 86443c2c18..6c32c23609 100644 --- a/packages/core/client/src/collection-manager/interfaces/properties/index.ts +++ b/packages/core/client/src/collection-manager/interfaces/properties/index.ts @@ -16,6 +16,7 @@ export const type: ISchema = { { label: 'Text', value: 'text' }, { label: 'Integer', value: 'integer' }, { label: 'Float', value: 'float' }, + { label: 'Double', value: 'double' }, { label: 'Decimal', value: 'decimal' }, { label: 'Date', value: 'date' }, { label: 'DateOnly', value: 'dateonly' },