summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJavier Sánchez Parra <jsanchez@soleta.eu>2022-03-02 15:52:48 +0100
committerJavier Sánchez Parra <jsanchez@soleta.eu>2022-03-03 11:41:16 +0100
commitdc8759d2b90b47b7009a74f69348560777c088c9 (patch)
tree82d9add2930da8992cf4cb263c3dad738f821f16
parent30b3ef90b194c20183056e554bc1b06c2c271fca (diff)
Narrow client removal to scopes and commands pages
Otherwise, undesired removal of selected clients pills occurs.
-rw-r--r--ogcp/static/js/ogcp.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/ogcp/static/js/ogcp.js b/ogcp/static/js/ogcp.js
index c5c1c62..7cfa59d 100644
--- a/ogcp/static/js/ogcp.js
+++ b/ogcp/static/js/ogcp.js
@@ -14,7 +14,7 @@ function showSelectedClient(client_checkbox) {
return;
}
- $('#' + pill_id).remove();
+ $('#' + pill_id, container).remove();
}
function showSelectedClientsOnEvents() {