mirror of
https://github.com/bitwarden/mobile
synced 2025-12-18 09:13:15 +00:00
order names in vault. getbyid can now return null if not found (use find instead of get)
This commit is contained in:
@@ -107,6 +107,12 @@ namespace Bit.App.Pages
|
||||
|
||||
private async void DeleteCell_Tapped(object sender, EventArgs e)
|
||||
{
|
||||
if(!_connectivity.IsConnected)
|
||||
{
|
||||
AlertNoConnection();
|
||||
return;
|
||||
}
|
||||
|
||||
// TODO: Validate the delete operation. ex. Cannot delete a folder that has sites in it?
|
||||
|
||||
if(!await _userDialogs.ConfirmAsync(AppResources.DoYouReallyWantToDelete, null, AppResources.Yes, AppResources.No))
|
||||
|
||||
Reference in New Issue
Block a user