Commit 061d8f84 authored by David O'Regan's avatar David O'Regan

Fix broken inject pattern for pipelines/projects

parent 3ca8dee1
...@@ -28,7 +28,6 @@ export default { ...@@ -28,7 +28,6 @@ export default {
}, },
inject: { inject: {
groupFullPath: { groupFullPath: {
type: String,
default: '', default: '',
}, },
}, },
......
...@@ -4,8 +4,8 @@ import { GlBadge, GlIcon } from '@gitlab/ui'; ...@@ -4,8 +4,8 @@ import { GlBadge, GlIcon } from '@gitlab/ui';
export default { export default {
components: { GlBadge, GlIcon }, components: { GlBadge, GlIcon },
inject: { inject: {
pipelineSecurityBuildsFailedCount: { type: Number, required: false, default: 0 }, pipelineSecurityBuildsFailedCount: { default: 0 },
pipelineSecurityBuildsFailedPath: { type: String, required: false, default: '' }, pipelineSecurityBuildsFailedPath: { default: '' },
}, },
}; };
</script> </script>
......
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