Skip to content

Commit

Permalink
fix(leav/ui): override value undefined
Browse files Browse the repository at this point in the history
  • Loading branch information
renaudAmsellem committed Nov 12, 2024
1 parent a68a23f commit c780e07
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -310,7 +310,7 @@ const _computeInheritedFlags = (fieldValues: RecordFormElementsValueStandardValu

const isInheritedValue = true;

if (overrideValue.value === null) {
if (!overrideValue || overrideValue.value === null) {
return {
inheritedValue,
isInheritedValue,
Expand Down

0 comments on commit c780e07

Please sign in to comment.