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:
parent
7c287b9f0b
commit
b6d01ccdca
|
@ -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) {
|
||||
|
|
Loading…
Reference in New Issue