Commit c603c647 authored by Kushal Pandya's avatar Kushal Pandya

Merge branch 'djadmin-dast-branch-warning' into 'master'

Make default-branch prop optional in On-demand scans

See merge request gitlab-org/gitlab!49472
parents ff56e27c de628e64
...@@ -17,7 +17,8 @@ export default { ...@@ -17,7 +17,8 @@ export default {
}, },
defaultBranch: { defaultBranch: {
type: String, type: String,
required: true, required: false,
default: '',
}, },
emptyStateSvgPath: { emptyStateSvgPath: {
type: String, type: String,
......
...@@ -91,7 +91,8 @@ export default { ...@@ -91,7 +91,8 @@ export default {
}, },
defaultBranch: { defaultBranch: {
type: String, type: String,
required: true, required: false,
default: '',
}, },
}, },
inject: { inject: {
......
---
title: Fix invalid prop warning in On-demand scans
merge_request: 49472
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