mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 09:48:58 -04:00
[Fleet] Fix broken UI when clicking on upgrade packages button (#141112)
Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>
This commit is contained in:
parent
ddcd62dd14
commit
f4dd515641
1 changed files with 1 additions and 1 deletions
|
@ -105,7 +105,7 @@ function formatVars(vars: NewPackagePolicy['inputs'][number]['vars']) {
|
|||
}
|
||||
|
||||
return Object.entries(vars).reduce((acc, [varKey, varRecord]) => {
|
||||
acc[varKey] = varRecord.value;
|
||||
acc[varKey] = varRecord?.value;
|
||||
|
||||
return acc;
|
||||
}, {} as SimplifiedVars);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue