mirror of
https://github.com/bitwarden/mobile
synced 2026-01-07 02:53:56 +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:
@@ -59,7 +59,7 @@ namespace Bit.App.Pages
|
||||
HasUnevenRows = true,
|
||||
Root = new TableRoot
|
||||
{
|
||||
new TableSection
|
||||
new TableSection(" ")
|
||||
{
|
||||
CreditsCell
|
||||
}
|
||||
|
||||
@@ -41,7 +41,7 @@ namespace Bit.App.Pages
|
||||
HasUnevenRows = true,
|
||||
Root = new TableRoot
|
||||
{
|
||||
new TableSection()
|
||||
new TableSection(" ")
|
||||
{
|
||||
NameCell
|
||||
}
|
||||
|
||||
@@ -54,11 +54,11 @@ namespace Bit.App.Pages
|
||||
VerticalOptions = LayoutOptions.Start,
|
||||
Root = new TableRoot
|
||||
{
|
||||
new TableSection
|
||||
new TableSection(" ")
|
||||
{
|
||||
NameCell
|
||||
},
|
||||
new TableSection
|
||||
new TableSection(" ")
|
||||
{
|
||||
DeleteCell
|
||||
}
|
||||
|
||||
@@ -38,7 +38,7 @@ namespace Bit.App.Pages
|
||||
{
|
||||
Root = new TableRoot
|
||||
{
|
||||
new TableSection
|
||||
new TableSection(" ")
|
||||
{
|
||||
EmailCell
|
||||
}
|
||||
@@ -61,7 +61,7 @@ namespace Bit.App.Pages
|
||||
NoHeader = true,
|
||||
Root = new TableRoot
|
||||
{
|
||||
new TableSection
|
||||
new TableSection(" ")
|
||||
{
|
||||
WebsiteCell
|
||||
}
|
||||
@@ -84,7 +84,7 @@ namespace Bit.App.Pages
|
||||
NoHeader = true,
|
||||
Root = new TableRoot
|
||||
{
|
||||
new TableSection
|
||||
new TableSection(" ")
|
||||
{
|
||||
BugCell
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user