Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
cf27dd31
Commit
cf27dd31
authored
Nov 02, 2020
by
mfluharty
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Show component only if feature flag is enabled
:group_coverage_data_report_graph
parent
df5fdb62
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
1 deletion
+4
-1
ee/app/assets/javascripts/analytics/repository_analytics/components/group_repository_analytics.vue
...itory_analytics/components/group_repository_analytics.vue
+4
-1
No files found.
ee/app/assets/javascripts/analytics/repository_analytics/components/group_repository_analytics.vue
View file @
cf27dd31
...
...
@@ -17,6 +17,9 @@ export default {
codeCoverageHeader
:
s__
(
'
RepositoriesAnalytics|Test Code Coverage
'
),
},
computed
:
{
shouldShowCoverageSummary
()
{
return
this
.
glFeatures
.
groupCoverageDataReportGraph
;
},
shouldShowCoverageReport
()
{
return
this
.
glFeatures
.
groupCoverageDataReport
;
},
...
...
@@ -29,7 +32,7 @@ export default {
<h4
data-testid=
"test-coverage-header"
>
{{
$options
.
text
.
codeCoverageHeader
}}
</h4>
<test-coverage-summary
/>
<test-coverage-summary
v-if=
"shouldShowCoverageSummary"
/>
<test-coverage-table
v-if=
"shouldShowCoverageReport"
class=
"gl-mb-5"
/>
<download-test-coverage
/>
</div>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment