Commit 88d4f579 authored by mfluharty's avatar mfluharty

Preselect all projects in group coverage analytics

Instead of waiting for the user to select some projects in the dropdown
Default to "All projects", which selects all projects from the dropdown
(the first page of projects with coverage data from the last 30 days)

Changelog: changed
EE: true
parent 0c7e4c55
......@@ -61,7 +61,7 @@ export default {
groupProjects: [],
projectsPageInfo: {},
projectSearchTerm: '',
selectAllProjects: false,
selectAllProjects: true,
};
},
computed: {
......
......@@ -68,7 +68,7 @@ export default {
},
data() {
return {
allProjectsSelected: false,
allProjectsSelected: true,
allCoverageData: [], // All data we have ever received whether selected or not
hasError: false,
isLoading: false,
......
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