Fix statuses order in account's statuses admin page (#16937)
This commit is contained in:
		
							parent
							
								
									afb2b19ff5
								
							
						
					
					
						commit
						458830ee7c
					
				
					 1 changed files with 1 additions and 1 deletions
				
			
		|  | @ -14,7 +14,7 @@ module Admin | |||
|       @statuses = @account.statuses.where(visibility: [:public, :unlisted]) | ||||
| 
 | ||||
|       if params[:media] | ||||
|         @statuses.merge!(Status.joins(:media_attachments).merge(@account.media_attachments.reorder(nil)).group(:id)) | ||||
|         @statuses.merge!(Status.joins(:media_attachments).merge(@account.media_attachments.reorder(nil)).group(:id)).reorder('statuses.id desc') | ||||
|       end | ||||
| 
 | ||||
|       @statuses = @statuses.preload(:media_attachments, :mentions).page(params[:page]).per(PER_PAGE) | ||||
|  |  | |||
		Loading…
	
		Reference in a new issue