From faf850794a4baf986acb3f0540bf016f7afd518c Mon Sep 17 00:00:00 2001 From: SillyLossy Date: Wed, 1 Mar 2023 23:35:43 +0200 Subject: [PATCH] Fix click propagation --- public/index.html | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/public/index.html b/public/index.html index c8493f47a..fa9513519 100644 --- a/public/index.html +++ b/public/index.html @@ -2031,7 +2031,8 @@ $("#rm_ch_create_block").css("display", "none"); $("#rm_characters_block" ).css("display", "none"); - async function memberClickHandler() { + async function memberClickHandler(event) { + event.stopPropagation(); const id = $(this).data('id'); const isDelete = !!($(this).closest('#rm_group_members').length); const template = $(this).clone();