Skip to content
Snippets Groups Projects

Remove unused 'hideProjects' prop and its related refs

Merged Anwar Sadath requested to merge gitlab-community/gitlab:remove-hideProjects-ref into master
All threads resolved!
Files
4
@@ -41,7 +41,7 @@ export default {
emptyStateComponent: SubgroupsAndProjectsEmptyState,
lazy: this.$route.name !== ACTIVE_TAB_SUBGROUPS_AND_PROJECTS,
service: new GroupsService(this.endpoints[ACTIVE_TAB_SUBGROUPS_AND_PROJECTS]),
store: new GroupsStore({ hideProjects: false, showSchemaMarkup: true }),
store: new GroupsStore({ showSchemaMarkup: true }),
},
{
title: this.$options.i18n[ACTIVE_TAB_SHARED],
@@ -49,7 +49,7 @@ export default {
emptyStateComponent: SharedProjectsEmptyState,
lazy: this.$route.name !== ACTIVE_TAB_SHARED,
service: new GroupsService(this.endpoints[ACTIVE_TAB_SHARED]),
store: new GroupsStore({ hideProjects: false }),
store: new GroupsStore(),
},
{
title: this.$options.i18n[ACTIVE_TAB_ARCHIVED],
@@ -57,7 +57,7 @@ export default {
emptyStateComponent: ArchivedProjectsEmptyState,
lazy: this.$route.name !== ACTIVE_TAB_ARCHIVED,
service: new GroupsService(this.endpoints[ACTIVE_TAB_ARCHIVED]),
store: new GroupsStore({ hideProjects: false }),
store: new GroupsStore(),
},
];
return {
Loading