1
0
mirror of https://github.com/bitwarden/mobile.git synced 2024-11-05 09:01:11 +01:00

name short

This commit is contained in:
Kyle Spearrin 2018-12-06 14:49:26 -05:00
parent 0b1c0be0f0
commit 8fc5ad099b
2 changed files with 3 additions and 2 deletions

View File

@ -187,6 +187,7 @@ namespace Bit.App.Models.Page
}
public string Name { get; set; }
public string NameShort => string.IsNullOrWhiteSpace(Name) || Name.Length == 0 ? "-" : Name[0].ToString();
}
public class GroupingOrCipher

View File

@ -81,8 +81,8 @@ namespace Bit.App.Pages
ItemsSource = PresentationSections,
HasUnevenRows = true,
GroupHeaderTemplate = new DataTemplate(() => new SectionHeaderViewCell(
nameof(Section<GroupingOrCipher>.Name), nameof(Section<GroupingOrCipher>.Count))),
GroupShortNameBinding = new Binding(nameof(Section<GroupingOrCipher>.Name)),
nameof(Section<Grouping>.Name), nameof(Section<Grouping>.Count))),
GroupShortNameBinding = new Binding(nameof(Section<Grouping>.NameShort)),
ItemTemplate = new GroupingOrCipherDataTemplateSelector(this)
};