Merge pull request #3376 from leigh-pointer/BootswatchThemeIssue
Fix for #3374 Backward compatability
This commit is contained in:
commit
f739bee353
|
@ -255,7 +255,7 @@
|
|||
public bool ShowLanguageSwitcher { get; set; } = true;
|
||||
|
||||
[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 _showEditMode = false;
|
||||
|
|
|
@ -24,7 +24,7 @@
|
|||
@code{
|
||||
private IEnumerable<Culture> _supportedCultures;
|
||||
[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;
|
||||
|
||||
protected override void OnParametersSet()
|
||||
|
|
Loading…
Reference in New Issue
Block a user