We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
On your stackblitz example (and on my test app), if a field (type number) is set with: 20230302175510297 it changes to 20230302175510296.
my schema: this.editorOptions.schema = { definitions: {}, $schema: 'http://json-schema.org/draft-07/schema#', $id: '#/randomNumber', type: 'object', title: 'SimulationParameter Attributes Fix eventNumber', properties: { eventNumber: { $id: '#/properties/eventNumber/randomNumber', type: 'number', title: 'Attribute eventNumber', }, }};
I guess it's mistaking the field type and parsing it has datetime.
Thank you
The text was updated successfully, but these errors were encountered:
any ideas on where is the problem? thanks
Sorry, something went wrong.
No branches or pull requests
On your stackblitz example (and on my test app), if a field (type number) is set with: 20230302175510297 it changes to 20230302175510296.
my schema:
this.editorOptions.schema = {
definitions: {},
$schema: 'http://json-schema.org/draft-07/schema#',
$id: '#/randomNumber',
type: 'object',
title: 'SimulationParameter Attributes Fix eventNumber',
properties: {
eventNumber: {
$id: '#/properties/eventNumber/randomNumber',
type: 'number',
title: 'Attribute eventNumber',
},
}};
I guess it's mistaking the field type and parsing it has datetime.
Thank you
The text was updated successfully, but these errors were encountered: