From 68c558702599628532bcccc5ca110a77402b503d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Amar=20Maksumi=C4=87?= Date: Fri, 25 Jun 2021 11:33:06 -0400 Subject: [PATCH] fixed send_add_data in topology.js --- web/js/topology.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/web/js/topology.js b/web/js/topology.js index fc36523..f8fd3a8 100644 --- a/web/js/topology.js +++ b/web/js/topology.js @@ -645,7 +645,7 @@ function collect_add_data() { function send_add_data() { request_add(collect_add_data()); - //request_tree(localStorage.getItem('current_tree')); + request_tree(localStorage.getItem('current_tree')); } function collect_edit_data(id) { @@ -765,4 +765,4 @@ $('#edit_form').keypress(function (e) { e.preventDefault(); //do something } -}); \ No newline at end of file +});