feat: use icon for connections on mobile view
diff --git a/erpnext/public/js/hierarchy_chart/hierarchy_chart_mobile.js b/erpnext/public/js/hierarchy_chart/hierarchy_chart_mobile.js
index 17062e2..1985299 100644
--- a/erpnext/public/js/hierarchy_chart/hierarchy_chart_mobile.js
+++ b/erpnext/public/js/hierarchy_chart/hierarchy_chart_mobile.js
@@ -50,7 +50,7 @@
 			image: node.image,
 			parent: node.parent_id,
 			connections: node.connections,
-			is_mobile: 1
+			is_mobile: true
 		});
 
 		node.parent.append(node_card);
diff --git a/erpnext/public/js/templates/node_card.html b/erpnext/public/js/templates/node_card.html
index c3d8e01..fb94df8 100644
--- a/erpnext/public/js/templates/node_card.html
+++ b/erpnext/public/js/templates/node_card.html
@@ -16,10 +16,16 @@
 			<div class="node-info d-flex flex-row mb-1">
 				<div class="node-title text-muted ellipsis">{{ title }}</div>
 
-				{% if connections == 1 %}
-					<div class="node-connections text-muted ml-2 ellipsis">· {{ connections }} Connection</div>
+				{% if is_mobile %}
+					<div class="node-connections text-muted ml-2 ellipsis">
+						· {{ connections }} <span class="fa fa-level-down"></span>
+					</div>
 				{% else %}
-					<div class="node-connections text-muted ml-2 ellipsis">· {{ connections }} Connections</div>
+					{% if connections == 1 %}
+						<div class="node-connections text-muted ml-2 ellipsis">· {{ connections }} Connection</div>
+					{% else %}
+						<div class="node-connections text-muted ml-2 ellipsis">· {{ connections }} Connections</div>
+					{% endif %}
 				{% endif %}
 			</div>
 		</div>