mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-10-31 02:46:04 +01:00 
			
		
		
		
	Fix U2F error reasons always hidden (#16327)
This strict equality check in `u2fError` was causing the error description to hide immediately after showing. `Object.keys` always returns strings, but `errorType` argument is usually a number type. Co-authored-by: techknowlogick <techknowlogick@gitea.io> Co-authored-by: zeripath <art27@cantab.net>
This commit is contained in:
		| @@ -2421,7 +2421,7 @@ function u2fError(errorType) { | |||||||
|   u2fErrors[errorType].removeClass('hide'); |   u2fErrors[errorType].removeClass('hide'); | ||||||
|  |  | ||||||
|   Object.keys(u2fErrors).forEach((type) => { |   Object.keys(u2fErrors).forEach((type) => { | ||||||
|     if (type !== errorType) { |     if (type !== `${errorType}`) { | ||||||
|       u2fErrors[type].addClass('hide'); |       u2fErrors[type].addClass('hide'); | ||||||
|     } |     } | ||||||
|   }); |   }); | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user