mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-10-26 12:27:06 +00:00 
			
		
		
		
	Fix the bug that the emoji does not disappear (#11489)
* Fix the bug that the emoticon does not disappear * Update web_src/js/index.js Co-authored-by: Lauris BH <lauris@nix.lv> * Update web_src/js/index.js Co-authored-by: Lauris BH <lauris@nix.lv> Co-authored-by: Lauris BH <lauris@nix.lv> Co-authored-by: techknowlogick <techknowlogick@gitea.io> Co-authored-by: zeripath <art27@cantab.net>
This commit is contained in:
		| @@ -239,7 +239,7 @@ function initReactionSelector(parent) { | |||||||
|       if (resp && (resp.html || resp.empty)) { |       if (resp && (resp.html || resp.empty)) { | ||||||
|         const content = $(vm).closest('.content'); |         const content = $(vm).closest('.content'); | ||||||
|         let react = content.find('.segment.reactions'); |         let react = content.find('.segment.reactions'); | ||||||
|         if (!resp.empty && react.length > 0) { |         if ((!resp.empty || resp.html === '') && react.length > 0) { | ||||||
|           react.remove(); |           react.remove(); | ||||||
|         } |         } | ||||||
|         if (!resp.empty) { |         if (!resp.empty) { | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user
	 L0veSunshine
					L0veSunshine