diff --git a/src/fireedge/src/client/components/Tabs/Vm/Configuration.js b/src/fireedge/src/client/components/Tabs/Vm/Configuration.js index a3ccd220e2..0674419441 100644 --- a/src/fireedge/src/client/components/Tabs/Vm/Configuration.js +++ b/src/fireedge/src/client/components/Tabs/Vm/Configuration.js @@ -68,7 +68,13 @@ const VmConfigurationTab = ({ tabProps: { actions } = {}, id }) => { if (isSupported && hasValue) { const name = idx ? `${idx}.${key}` : key - sectionAttributes.push({ name, value, dataCy: name }) + sectionAttributes.push({ + name, + value, + dataCy: name, + canCopy: true, + showActionsOnHover: true, + }) } }