diff --git a/src/app/[orgId]/settings/(private)/remote-exit-nodes/ExitNodesTable.tsx b/src/app/[orgId]/settings/(private)/remote-exit-nodes/ExitNodesTable.tsx index 62cada8d..a38f3b86 100644 --- a/src/app/[orgId]/settings/(private)/remote-exit-nodes/ExitNodesTable.tsx +++ b/src/app/[orgId]/settings/(private)/remote-exit-nodes/ExitNodesTable.tsx @@ -231,12 +231,22 @@ export default function ExitNodesTable({ }, cell: ({ row }) => { const originalRow = row.original; - return originalRow.version || "-"; + return ( +
+ {originalRow.version && originalRow.version ? ( + + {"v" + originalRow.version} + + ) : ( + "-" + )} +
+ ); } }, { id: "actions", - header: () => ({t("actions")}), + header: () => {t("actions")}, cell: ({ row }) => { const nodeRow = row.original; const remoteExitNodeId = nodeRow.id; @@ -295,9 +305,7 @@ export default function ExitNodesTable({ }} dialog={
-

- {t("remoteExitNodeQuestionRemove")} -

+

{t("remoteExitNodeQuestionRemove")}

{t("remoteExitNodeMessageRemove")}