From d72f939ba81e7e561811045065fce0ea1265a31c Mon Sep 17 00:00:00 2001 From: Loic Baron Date: Mon, 14 Apr 2014 14:35:59 +0200 Subject: [PATCH] plugin testbeds filter: hrn with backslashes --- plugins/testbeds/static/js/testbeds.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/testbeds/static/js/testbeds.js b/plugins/testbeds/static/js/testbeds.js index f26602e6..b9771270 100644 --- a/plugins/testbeds/static/js/testbeds.js +++ b/plugins/testbeds/static/js/testbeds.js @@ -135,7 +135,7 @@ value = this.dataset['platform']; // handle the hrn that include . in their name (has to be in sync with the data from SFA) - value = value.replace(/\./g,"\\."); + //value = value.replace(/\./g,"\\."); key = "network_hrn"; op = "included"; return $(this).hasClass('active') ? self._addFilter(key, op, value) : self._removeFilter(key, op, value); -- 2.43.0