diff --git a/packages/manager/modules/bm-server-components/src/general-information/installation/ovh/server-installation-ovh.controller.js b/packages/manager/modules/bm-server-components/src/general-information/installation/ovh/server-installation-ovh.controller.js index 6ee13de04cfa..b324cb643e12 100644 --- a/packages/manager/modules/bm-server-components/src/general-information/installation/ovh/server-installation-ovh.controller.js +++ b/packages/manager/modules/bm-server-components/src/general-information/installation/ovh/server-installation-ovh.controller.js @@ -2156,7 +2156,11 @@ export default class ServerInstallationOvhCtrl { getCustomizations() { const customizations = {}; Object.values(this.$scope.installation.inputs).forEach((input) => { - if ( + if (input.name === 'enableLacpBonding') { + customizations[input.name] = !!this.$scope.installation.input[ + input.name + ]; + } else if ( input.type !== 'keyValue' && this.$scope.installation.input[input.name] ) {