Skip to content

Commit edf5449

Browse files
author
Jani Giannoudis
committed
web app asset view: fixed dialog title
1 parent 32a09bc commit edf5449

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Presentation/Components/Assets/WebAppAssetView.razor.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ protected async Task EditServerAsync()
162162

163163
// show dialog
164164
var dialog = await (await DialogService.ShowAsync<WebserverConnectionDialog>(
165-
title: Localizer.DatabaseConnectionDialogTitle, parameters)).Result;
165+
title: Localizer.WebserverDialogTitle, parameters)).Result;
166166
if (dialog == null || dialog.Canceled)
167167
{
168168
return;
@@ -189,7 +189,7 @@ protected async Task EditServerAsync()
189189
}
190190
catch (Exception exception)
191191
{
192-
await DialogService.ShowErrorMessage(Localizer.DatabaseConnectionDialogTitle, exception);
192+
await DialogService.ShowErrorMessage(Localizer.WebserverDialogTitle, exception);
193193
}
194194
}
195195

0 commit comments

Comments
 (0)