From 16e8c962101b8e68b0730a804082ca8ca3ec92af Mon Sep 17 00:00:00 2001 From: ansuz Date: Mon, 30 Sep 2019 15:41:11 +0200 Subject: [PATCH] allow for selection of user data in admin side of support tickets --- www/support/ui.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/www/support/ui.js b/www/support/ui.js index 05efc2935..7cbf1e225 100644 --- a/www/support/ui.js +++ b/www/support/ui.js @@ -177,6 +177,8 @@ define([ ]); $(userData).click(function () { $(userData).find('pre').toggle(); + }).find('pre').click(function (ev) { + ev.stopPropagation(); }); var name = Util.fixHTML(content.sender.name) || Messages.anonymous;