mirror of
				https://github.com/go-gitea/gitea
				synced 2025-10-31 03:18:24 +00:00 
			
		
		
		
	Fix download buttons on branches page (#30147)
Fixes https://github.com/go-gitea/gitea/issues/30143, regression from https://github.com/go-gitea/gitea/pull/29920. We have `.button` on the repo page, but on the branch page it's a `.btn`. Eventually we should find a solution to have a single button class but until then this solution should be acceptable.
This commit is contained in:
		| @@ -3,7 +3,7 @@ import {hideElem, showElem} from '../utils/dom.js'; | ||||
| import {POST} from '../modules/fetch.js'; | ||||
|  | ||||
| async function getArchive($target, url, first) { | ||||
|   const dropdownBtn = $target[0].closest('.ui.dropdown.button'); | ||||
|   const dropdownBtn = $target[0].closest('.ui.dropdown.button') ?? $target[0].closest('.ui.dropdown.btn'); | ||||
|  | ||||
|   try { | ||||
|     dropdownBtn.classList.add('is-loading'); | ||||
|   | ||||
		Reference in New Issue
	
	Block a user