]> source.dussan.org Git - gitea.git/commitdiff
Hide archived repos by default in repo-list (#11440)
authorzeripath <art27@cantab.net>
Sat, 16 May 2020 22:12:03 +0000 (23:12 +0100)
committerGitHub <noreply@github.com>
Sat, 16 May 2020 22:12:03 +0000 (01:12 +0300)
As discussed in #11268 hide archived repos by default in the
dashboard repo-list

Signed-off-by: Andrew Thornton <art27@cantab.net>
web_src/js/index.js

index 0a7bc0c4cdb8f368cdff972277e10c1b82840b71..f7b4ef24d8b3809094bc93bb44595fbe117b0334 100644 (file)
@@ -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;
         }
       },