Skip to content

Commit c38f735

Browse files
committed
.
1 parent 6445b23 commit c38f735

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

fast cf ip scanner/ViewModels/ScanPageViewModel.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ async Task ShowOptionsForSearchIp()
8787
[RelayCommand]
8888
async Task ExportAllIPsToClipboard()
8989
{
90-
var ips = string.Join(",", ValidIPs.Select(ip => ip.IP.ToString()));
90+
var ips = string.Join("\n", ValidIPs.Select(ip => ip.IP.ToString()));
9191
await Clipboard.SetTextAsync(ips);
9292
await App.Current.MainPage.DisplayAlert("Copied", $"the ips is copied", "OK");
9393
}

0 commit comments

Comments
 (0)