Skip to content

Commit

Permalink
Merge pull request felixse#84 from jumptrading/ap/81_links_bug
Browse files Browse the repository at this point in the history
Fixing a bug with incomplete links, and making username field bigger

It's so trivial that I'll merge without waiting for tests.
  • Loading branch information
peske authored May 13, 2019
2 parents 9f62a65 + 7b2ba9d commit 5755259
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion FluentTerminal.App/Dialogs/SshInfoDialog.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
</ContentDialog.Resources>
<Grid Width="500">
<Grid.ColumnDefinitions>
<ColumnDefinition Width="100" />
<ColumnDefinition Width="140" />
<ColumnDefinition Width="22" />
<ColumnDefinition Width="*" />
<ColumnDefinition Width="8" />
Expand Down
4 changes: 3 additions & 1 deletion FluentTerminal.App/Services/SshHelperService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,9 @@ public async Task<ShellProfile> GetSshShellProfileAsync(Uri uri)
if (!string.IsNullOrEmpty(error))
{
// Happens if the link doesn't contain all the needed data, so we have to prompt user to complete.
sshConnectionInfo = (SshConnectionInfoViewModel) await _dialogService.ShowSshConnectionInfoDialogAsync();
sshConnectionInfo =
(SshConnectionInfoViewModel) await _dialogService.ShowSshConnectionInfoDialogAsync(
sshConnectionInfo);

// sshConnectionInfo can be null if user clicks "Cancel".
if (sshConnectionInfo == null)
Expand Down

0 comments on commit 5755259

Please sign in to comment.