Commit bcb7a223 authored by Kushal Pandya's avatar Kushal Pandya

Merge branch 'djadmin-fix-site-profile-regression' into 'master'

Fix DAST site profile form submission

See merge request gitlab-org/gitlab!56135
parents 945a78e5 95dc9073
...@@ -143,7 +143,9 @@ export default { ...@@ -143,7 +143,9 @@ export default {
fullPath: this.fullPath, fullPath: this.fullPath,
...(this.isEdit ? { id: this.siteProfile.id } : {}), ...(this.isEdit ? { id: this.siteProfile.id } : {}),
...serializeFormObject(this.form.fields), ...serializeFormObject(this.form.fields),
auth: isAuthEnabled ? serializeFormObject(this.authSection.fields) : {}, ...(this.glFeatures.securityDastSiteProfilesAdditionalFields && {
auth: serializeFormObject(this.authSection.fields),
}),
}, },
}; };
......
---
title: Fix DAST site profile form submission
merge_request: 56135
author:
type: fixed
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment