mirror of
https://github.com/bitwarden/mobile
synced 2025-12-22 11:13:49 +00:00
update xamarin forms. empty string section titles
There appears to be a bug regression introduced with the new xamarin forms that removes headers if there is no title. Hack to fix it for now is to include a empty string header title.
This commit is contained in:
@@ -36,7 +36,7 @@ namespace Bit.App.Pages
|
||||
WebCell = new ToolsViewCell(AppResources.WebVault, AppResources.WebVaultDescription, "globe");
|
||||
ImportCell = new ToolsViewCell(AppResources.ImportLogins, AppResources.ImportLoginsDescription, "cloudup");
|
||||
|
||||
var section = new TableSection { GeneratorCell };
|
||||
var section = new TableSection(" ") { GeneratorCell };
|
||||
|
||||
if(Device.OS == TargetPlatform.iOS)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user