diff --git a/src/components/AccountCreateUpdateForm/index.vue b/src/components/AccountCreateUpdateForm/index.vue index 2184efe56..c22822bdb 100644 --- a/src/components/AccountCreateUpdateForm/index.vue +++ b/src/components/AccountCreateUpdateForm/index.vue @@ -151,7 +151,8 @@ export default { }, push_now: { hidden: () => { - return !this.iPlatform.automation?.['push_account_enabled'] + const automation = this.iPlatform.automation || {} + return !automation.push_account_enabled || !automation.ansible_enabled } } },