mirror of
https://github.com/bitwarden/mobile
synced 2025-12-18 01:03:24 +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:
@@ -77,19 +77,19 @@ namespace Bit.App.Pages
|
||||
EnableSelection = false,
|
||||
Root = new TableRoot
|
||||
{
|
||||
new TableSection
|
||||
new TableSection(" ")
|
||||
{
|
||||
UppercaseCell,
|
||||
LowercaseCell,
|
||||
NumbersCell,
|
||||
SpecialCell
|
||||
},
|
||||
new TableSection
|
||||
new TableSection(" ")
|
||||
{
|
||||
NumbersMinCell,
|
||||
SpecialMinCell
|
||||
},
|
||||
new TableSection
|
||||
new TableSection(" ")
|
||||
{
|
||||
AvoidAmbiguousCell
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user