Closed emilienbidet closed 1 year ago
Hello !
I found a bug with NumberField.
The label and the description should appear but nothing is displayed for NumberFields.
Here is my schema
export default config({ storage: { kind: "local", }, collections: { hotels: collection({ schema: { slug: fields.slug({ name: { label: "Name", }, }), distance: fields.integer({ label: "Distance", description: "Distance from the place in meters", validation: { min: 0, max: 10000, }, }), ...
And the result:
I just pushed a fix for this, will be on npm with the next release in a day or two.
Thanks for reporting it!
Thank you boss ❤️
Hello !
I found a bug with NumberField.
The label and the description should appear but nothing is displayed for NumberFields.
Here is my schema
And the result: