Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
DevoTalk committed Jun 10, 2024
1 parent 6445b23 commit c38f735
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fast cf ip scanner/ViewModels/ScanPageViewModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ async Task ShowOptionsForSearchIp()
[RelayCommand]
async Task ExportAllIPsToClipboard()
{
var ips = string.Join(",", ValidIPs.Select(ip => ip.IP.ToString()));
var ips = string.Join("\n", ValidIPs.Select(ip => ip.IP.ToString()));
await Clipboard.SetTextAsync(ips);
await App.Current.MainPage.DisplayAlert("Copied", $"the ips is copied", "OK");
}
Expand Down

0 comments on commit c38f735

Please sign in to comment.