Skip to content
New issue

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

FIO-9888: Fixed issue where the noDefaults flag would skip defaults even for calculations. #6061

Merged
merged 1 commit into from
Mar 25, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 8 additions & 7 deletions src/components/_classes/component/Component.js
Original file line number Diff line number Diff line change
Expand Up @@ -2923,14 +2923,15 @@

get shouldAddDefaultValue() {
// It should add a default value if...
// 1.) Ensure they have not set "noDefaults". If that is true, then will always return false. AND
// 2.) The component is pristine (user has not manually modified it). AND
// 3.) There is a default value setting present and it is not NULL or UNDEFINED.
return !this.options.noDefaults && this.pristine && (
// 1.) The component is pristine (user has not manually modified it). AND
// 1.) There is a default value setting present OR
// 2.) The noDefaults flag is not true AND the empty value is either an empty string or boolean
return this.pristine && (
this.hasDefaultValue ||
// Empty strings and booleans are allowed primitives whose defaults are automatically added.
(this.emptyValue === '' || (typeof this.emptyValue === 'boolean'))
);
(
!this.options.noDefaults && (this.emptyValue === '' || (typeof this.emptyValue === 'boolean')
)
));
}

get defaultValue() {
Expand Down Expand Up @@ -3043,7 +3044,7 @@

/**
* Returns if the value (e.g. array) should be divided between several inputs
* @returns {boolean}

Check warning on line 3047 in src/components/_classes/component/Component.js

View workflow job for this annotation

GitHub Actions / setup

Missing JSDoc @returns description
*/
isSingleInputValue() {
return false;
Expand Down
Loading