Skip to content

Commit 35b6613

Browse files
UI minor updates
1 parent 0b7aadd commit 35b6613

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

src/Certify.UI.Desktop/App.xaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,6 @@
7575
<Setter Property="controls:ControlsHelper.CornerRadius" Value="0" />
7676
</Style>
7777

78-
7978
<!-- control templates -->
8079
<DataTemplate x:Key="ProviderHiddenParameter" />
8180

src/Certify.UI.Shared/ViewModel/AppViewModel/AppViewModel.Connections.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,7 @@ public async Task<bool> InitServiceConnections(ServerConnection conn, Cancellati
219219
catch (Exception exp)
220220
{
221221
// failed to connect to status signalr hub
222-
Log?.Error($"Failed to connect to status hub: {exp}");
222+
Log?.Error($"Failed to connect to status hub {(conn?.UseHTTPS == true ? "https" : "http")}{conn?.Host}:{conn?.Port}/api/status: {exp}");
223223

224224
ConnectionState = IsServiceAvailable ? "Connected" : "Not Connected";
225225

src/Certify.UI.Shared/Windows/MainWindow.xaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
1212
xmlns:res="clr-namespace:Certify.Locales;assembly=Certify.Locales"
1313
Title="Certify Certificate Manager"
14-
Width="940"
15-
Height="640"
14+
Width="1085"
15+
Height="656"
1616
MinWidth="680"
1717
MinHeight="400"
1818
d:DataContext="{d:DesignInstance Type=local:AppViewModelDesign,
@@ -41,7 +41,7 @@
4141

4242
<Button
4343
Height="32"
44-
Margin="8,0,0,5"
44+
Margin="0,0,0,5"
4545
AutomationProperties.Name="{x:Static res:SR.New_Certificate}"
4646
Click="Button_NewCertificate"
4747
DockPanel.Dock="Left"

0 commit comments

Comments
 (0)