From 6b969b7bdff7173d0ca4bc8116016aa942b43470 Mon Sep 17 00:00:00 2001 From: Roopesh Chander Date: Mon, 29 Oct 2018 02:19:11 +0530 Subject: [PATCH] Tunnel detail: Copying the public key --- .../WireGuard/UI/iOS/TunnelDetailTableViewController.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/WireGuard/WireGuard/UI/iOS/TunnelDetailTableViewController.swift b/WireGuard/WireGuard/UI/iOS/TunnelDetailTableViewController.swift index 1f09cf4..8a8c53f 100644 --- a/WireGuard/WireGuard/UI/iOS/TunnelDetailTableViewController.swift +++ b/WireGuard/WireGuard/UI/iOS/TunnelDetailTableViewController.swift @@ -174,7 +174,7 @@ extension TunnelDetailTableViewController { let cell = tableView.dequeueReusableCell(withIdentifier: TunnelDetailTableViewButtonCell.id, for: indexPath) as! TunnelDetailTableViewButtonCell cell.buttonText = field.rawValue cell.onTapped = { - print("Copying public key is unimplemented") // TODO + UIPasteboard.general.string = interfaceData[.publicKey] } return cell } else {