Hide archived repos by default in repo-list (#11440)

As discussed in #11268 hide archived repos by default in the
dashboard repo-list

Signed-off-by: Andrew Thornton <art27@cantab.net>
mj
zeripath 4 years ago committed by GitHub
parent aaaaeb7050
commit c18144086f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -2681,7 +2681,7 @@ function initVueComponents() {
let archivedFilter = params.get('repo-search-archived');
if (!archivedFilter) {
archivedFilter = 'both';
archivedFilter = 'unarchived';
}
let searchQuery = params.get('repo-search-query');
@ -2778,8 +2778,8 @@ function initVueComponents() {
$('#archivedFilterCheckbox').checkbox('set indeterminate');
break;
default:
this.archivedFilter = 'both';
$('#archivedFilterCheckbox').checkbox('set indeterminate');
this.archivedFilter = 'unarchived';
$('#archivedFilterCheckbox').checkbox('set unchecked');
break;
}
switch (this.privateFilter) {
@ -2828,7 +2828,7 @@ function initVueComponents() {
params.set('repo-search-private', this.privateFilter);
}
if (this.archivedFilter === 'both') {
if (this.archivedFilter === 'unarchived') {
params.delete('repo-search-archived');
} else {
params.set('repo-search-archived', this.archivedFilter);
@ -2861,7 +2861,7 @@ function initVueComponents() {
this.archivedFilter = 'both';
break;
default:
this.archivedFilter = 'both';
this.archivedFilter = 'unarchived';
break;
}
this.page = 1;
@ -2916,7 +2916,7 @@ function initVueComponents() {
case 'archived':
return repo.archived;
default:
return true;
return !repo.archived;
}
},

Loading…
Cancel
Save