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
The Configuration Editor currently writes blank objects and null fields into the configuration. This just clutters the configuration.
For example: "car_classes" : { }, "series_logo" : null,
"car_classes" : { },
"series_logo" : null,
However, one thing that should be retained is the writing of empty string values for fields. For example: "subheading_text" : "",
"subheading_text" : "",
The reason for this is that the end-user has no distinction between "blank" and "null."
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The Configuration Editor currently writes blank objects and null fields into the configuration. This just clutters the configuration.
For example:
"car_classes" : { },
"series_logo" : null,
However, one thing that should be retained is the writing of empty string values for fields. For example:
"subheading_text" : "",
The reason for this is that the end-user has no distinction between "blank" and "null."
The text was updated successfully, but these errors were encountered: