summaryrefslogtreecommitdiffstats
path: root/interface
diff options
context:
space:
mode:
authorbjoe2k4 <bjoe2k4@users.noreply.github.com>2018-03-30 13:52:10 +0200
committerGitHub <noreply@github.com>2018-03-30 13:52:10 +0200
commitc7e2d434a2a0b05c2eb24a0081a626cd3ad0cc90 (patch)
tree5bba0ae260dc750e27c743d191fdd5a26772da45 /interface
parentf3d6aacab592f53a346b7573911dee2489392b3a (diff)
downloadrspamd-c7e2d434a2a0b05c2eb24a0081a626cd3ad0cc90.tar.gz
rspamd-c7e2d434a2a0b05c2eb24a0081a626cd3ad0cc90.zip
[WebUI] Fix modalBody for maps that appear more than once
Diffstat (limited to 'interface')
-rw-r--r--interface/js/app/config.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/interface/js/app/config.js b/interface/js/app/config.js
index 894f080fd..6955f5eaf 100644
--- a/interface/js/app/config.js
+++ b/interface/js/app/config.js
@@ -252,7 +252,7 @@ function($) {
var editable = $(this).data('editable');
var title = $(this).data('title');
$('#modalTitle').html(title);
- $('#modalBody ' + source).show();
+ $('#modalBody ' + source).first().show();
var target = $(this).data('target');
$(target + ' .progress').hide();
$(target).modal(show = true, backdrop = true, keyboard = show);