forked from gitea/gitea
		
	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>
This commit is contained in:
		
							parent
							
								
									aaaaeb7050
								
							
						
					
					
						commit
						c18144086f
					
				| @ -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…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user
	 zeripath
						zeripath