diff --git a/pandora_console/include/class/NetworkMap.class.php b/pandora_console/include/class/NetworkMap.class.php
index 2f073fed3a..b2599e7208 100644
--- a/pandora_console/include/class/NetworkMap.class.php
+++ b/pandora_console/include/class/NetworkMap.class.php
@@ -3245,7 +3245,7 @@ class NetworkMap
$table->data['template_row']['node_target'] = '';
$table->data['template_row']['edit'] = '';
- $table->data['template_row']['edit'] .= ''.html_print_image('images/pixel_green.png', true, ['class' => 'main_menu_icon']).''.html_print_image('images/dot_red.png', true).''.html_print_image('images/spinner.gif', true).'';
+ $table->data['template_row']['edit'] .= ''.html_print_image('images/pixel_green.png', true, ['class' => 'circle-relations']).''.html_print_image('images/dot_red.png', true, ['class' => 'circle-relations']).''.html_print_image('images/spinner.gif', true, ['class' => 'circle-relations']).'';
// '.html_print_image('images/edit.svg', true, ['class' => 'invert_filter']).'';
$table->data['template_row']['edit'] .= ''.html_print_image('images/delete.svg', true, ['class' => 'main_menu_icon invert_filter', 'style' => 'padding: 10px']).'';
diff --git a/pandora_console/include/javascript/functions_pandora_networkmap.js b/pandora_console/include/javascript/functions_pandora_networkmap.js
index 5aef8c40ca..5a2f75889e 100644
--- a/pandora_console/include/javascript/functions_pandora_networkmap.js
+++ b/pandora_console/include/javascript/functions_pandora_networkmap.js
@@ -844,7 +844,7 @@ function edit_node(data_node, dblClick) {
"update_fictional_node(" + node_selected.id_db + ");"
);
- $("#node_options-node_name-2 input").attr(
+ $("#button-upd_only_node").attr(
"onclick",
"update_node_name(" + node_selected.id_db + ");"
);
diff --git a/pandora_console/include/styles/networkmap.css b/pandora_console/include/styles/networkmap.css
index 314bd92ce5..9f47c2cda8 100644
--- a/pandora_console/include/styles/networkmap.css
+++ b/pandora_console/include/styles/networkmap.css
@@ -37,3 +37,8 @@
.holding_area_link {
stroke-dasharray: 12, 3;
}
+
+img.circle-relations {
+ width: 12px;
+ border-radius: 50%;
+}