You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
Unable to set the default values for the additionalProperties key-value combos.
Currently the key is always "newKey" and the value is "New Value".
It would be helpful if we could customize what the default key is in the jsonschema.
It would be also nice if you could just have the fields show up empty rather than with a value at all.
Describe the solution you'd like
Something like any of these in the jsonschema would be nice.
Allow both to have defaults
"additionalProperties": {
"type": "string",
"default_key": "Key",
"default_value": "Value",
}
Allow just the value to have a default
"additionalProperties": {
"type": "string",
"default": "Value",
}
Allow it to just appear empty.
"additionalProperties": {
"type": "string",
"blank/empty": true, default of false
}
Describe alternatives you've considered
Not really just what alternatives would be useful, maybe something you could set in the uiSchema?
Also if this is already possible please let me know, I think ive tried everything on the playground and couldn't figure it out.
The text was updated successfully, but these errors were encountered:
Prerequisites
What theme are you using?
core
Is your feature request related to a problem? Please describe.
Unable to set the default values for the additionalProperties key-value combos.
Currently the key is always "newKey" and the value is "New Value".
It would be helpful if we could customize what the default key is in the jsonschema.
It would be also nice if you could just have the fields show up empty rather than with a value at all.
Describe the solution you'd like
Something like any of these in the jsonschema would be nice.
Describe alternatives you've considered
Not really just what alternatives would be useful, maybe something you could set in the uiSchema?
Also if this is already possible please let me know, I think ive tried everything on the playground and couldn't figure it out.
The text was updated successfully, but these errors were encountered: