Browse Source
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>
for-closed-social
L0veSunshine
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
web_src/js/index.js
|
|
@ -239,7 +239,7 @@ function initReactionSelector(parent) { |
|
|
|
if (resp && (resp.html || resp.empty)) { |
|
|
|
const content = $(vm).closest('.content'); |
|
|
|
let react = content.find('.segment.reactions'); |
|
|
|
if (!resp.empty && react.length > 0) { |
|
|
|
if ((!resp.empty || resp.html === '') && react.length > 0) { |
|
|
|
react.remove(); |
|
|
|
} |
|
|
|
if (!resp.empty) { |
|
|
|