diff --git a/src/pages/Nodes/Sidebar.tsx b/src/pages/Nodes/Sidebar.tsx
index c56ea0a2..c40494f9 100644
--- a/src/pages/Nodes/Sidebar.tsx
+++ b/src/pages/Nodes/Sidebar.tsx
@@ -30,7 +30,7 @@ export const Sidebar = ({ node, closeSidebar }: SidebarProps): JSX.Element => {
});
return (
-
+
@@ -73,12 +73,33 @@ export const Sidebar = ({ node, closeSidebar }: SidebarProps): JSX.Element => {
- Content 1
-
-
+ Content 1
+
+ {node.currentPosition && (
+
+
+ {(node.currentPosition.latitudeI / 1e7).toPrecision(6)},
+ {(node.currentPosition?.longitudeI / 1e7).toPrecision(6)}
+
+
{
+ setToCopy(
+ node.currentPosition
+ ? `${node.currentPosition.latitudeI / 1e7},${
+ node.currentPosition.longitudeI / 1e7
+ }`
+ : '',
+ );
+ setCopied();
+ }}
+ icon={isCopied ? : }
+ />
+
+ )}
- Content 3
- Remote Administration
+ Content 3
+ Remote Administration
{
icon={isCopied ? : }
/>
-
+