Skip to content

Commit

Permalink
Issue #3483: Use correct DF name on EditFieldValueValidate.
Browse files Browse the repository at this point in the history
  • Loading branch information
stefanhaerter committed Jun 19, 2024
1 parent dece5fe commit 2ef4cc3
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion Kernel/System/DynamicField/Driver/Lens.pm
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,10 @@ sub EditFieldValueValidate {
# call attribute df config validation
return $Kernel::OM->Get('Kernel::System::DynamicField::Backend')->EditFieldValueValidate(
%Param,
DynamicFieldConfig => $AttributeDFConfig,
DynamicFieldConfig => {
$AttributeDFConfig->%*,
Name => $Param{DynamicFieldConfig}{Name},
},
);
}

Expand Down

0 comments on commit 2ef4cc3

Please sign in to comment.