Fix for #3374 Backward compatability
Fixes the issue in the Language selector.
This commit is contained in:
parent
acf71cc2c2
commit
6f12818352
|
@ -255,7 +255,7 @@
|
||||||
public bool ShowLanguageSwitcher { get; set; } = true;
|
public bool ShowLanguageSwitcher { get; set; } = true;
|
||||||
|
|
||||||
[Parameter]
|
[Parameter]
|
||||||
public string LanguageDropdownAlignment { get; set; } // Empty or Left or Right
|
public string LanguageDropdownAlignment { get; set; } = string.Empty; // Empty or Left or Right
|
||||||
|
|
||||||
private bool _canViewAdminDashboard = false;
|
private bool _canViewAdminDashboard = false;
|
||||||
private bool _showEditMode = false;
|
private bool _showEditMode = false;
|
||||||
|
|
|
@ -24,7 +24,7 @@
|
||||||
@code{
|
@code{
|
||||||
private IEnumerable<Culture> _supportedCultures;
|
private IEnumerable<Culture> _supportedCultures;
|
||||||
[Parameter]
|
[Parameter]
|
||||||
public string DropdownAlignment { get; set; } // Empty or Left or Right
|
public string DropdownAlignment { get; set; } = string.Empty; // Empty or Left or Right
|
||||||
private string MenuAlignment = string.Empty;
|
private string MenuAlignment = string.Empty;
|
||||||
|
|
||||||
protected override void OnParametersSet()
|
protected override void OnParametersSet()
|
||||||
|
|
Loading…
Reference in New Issue
Block a user